diff options
Diffstat (limited to 'factors/type.go')
| -rw-r--r-- | factors/type.go | 6 |
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, |
