OFFSET
1,2
COMMENTS
A004394 is a subsequence. I searched to 2^150 for terms that are not in A004394 and found only a(29)=360360. Are there more near-miss superabundant numbers like 360360? - Jeppe Stig Nielsen, Dec 23 2022
EXAMPLE
360360 is included in this sequence (but not in A004394) because its abundancy (sigma(k)/k = 48/11) is the same as that of the previous record holder (namely 332640). - Gerard P. Michon, May 20 2009
MATHEMATICA
abund[n_] := abund[n] = DivisorSigma[1, n]/n; ok[n_] := (r = True; m = 1; While[m <= n, If[abund[n] < abund[m], r = False; Break[]]; m++]; r); n = 1; A077006 = {}; While[n < 10^6, If[ok[n], Print[n]; AppendTo[ A077006, n]]; n++]; A077006 (* Jean-François Alcover, Dec 12 2011 *)
DeleteDuplicates[Table[{n, DivisorSigma[1, n]/n}, {n, 2163*10^4}], Greater[ #1[[2]], #2[[2]]]&] [[All, 1]] (* Harvey P. Dale, Sep 02 2022 *)
CROSSREFS
KEYWORD
nice,nonn
AUTHOR
Mike Speciner, Oct 15 2003
EXTENSIONS
a(31)-a(40) from Jon E. Schoenfield, Mar 31 2018
STATUS
approved