summaryrefslogtreecommitdiff
path: root/factors
diff options
context:
space:
mode:
authorAdrien Hopkins <adrien.p.hopkins@gmail.com>2023-09-23 18:39:20 -0500
committerAdrien Hopkins <adrien.p.hopkins@gmail.com>2023-09-23 18:39:20 -0500
commit194004a9f99096ab724758ba39f39c50c71a21ed (patch)
treefcabfb860e4f96fe16a41f85ca10d4c4e5f14ea6 /factors
parent1075100f763349bd3c829385d747f817e8dab37b (diff)
Add license (GPL v3-only) & copyright notices
Diffstat (limited to 'factors')
-rw-r--r--factors/type.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/factors/type.go b/factors/type.go
index b58d01c..33c48bd 100644
--- a/factors/type.go
+++ b/factors/type.go
@@ -5,7 +5,8 @@ import "slices"
// The set of all colossaly abundant numbers that are small enough
// to be stored in a uint64.
// The first 15 are also the first 15 superior highly composites.
-// source: https://oeis.org/A004490
+// Number source: The Online Encyclopedia of Integer Sequences
+// can be found at the URL https://oeis.org/A004490
var colossallyAbundantNums = [...]uint64{
2, 6, 12, 60, 120, 360, 2520, 5040, 55440,
720720, 1441440, 4324320, 21621600, 367567200, 6983776800,
@@ -13,7 +14,8 @@ var colossallyAbundantNums = [...]uint64{
2021649740510400, 6064949221531200, 224403121196654400,
9200527969062830400}
-// source: https://oeis.org/A004394
+// Number source: The Online Encyclopedia of Integer Sequences
+// can be found at the URL https://oeis.org/A004394
var superabundantNums = [...]uint64{
1, 2, 4, 6, 12, 24, 36, 48, 60, 120, 180, 240, 360, 720, 840, 1260, 1680,
2520, 5040, 10080, 15120, 25200, 27720, 55440, 110880, 166320, 277200,