OFFSET
1,2
COMMENTS
Same as A136404. - Georg Fischer, Oct 12 2018
Previous name was: Highly composite square numbers for which the number of divisors increases to a record.
MATHEMATICA
With[{sqs=Range[10000]^2}, Union[Flatten[Table[Select[sqs, DivisorSigma[ 0, #]>n&, 1], {n, 500}]]]] (* Harvey P. Dale, Apr 28 2012 *)
t = {1}; sig = {1}; n = 1; Do[While[n++; d = DivisorSigma[0, n^2]; d <= sig[[-1]]]; AppendTo[sig, d]; AppendTo[t, n^2], {30}]; t (* T. D. Noe, Apr 30 2012 *)
CROSSREFS
KEYWORD
dead
AUTHOR
Ethan Ward (etkewa(AT)gmail.com), Apr 18 2010
EXTENSIONS
Corrected and extended by Harvey P. Dale, Apr 28 2012
STATUS
approved