OFFSET
1,2
COMMENTS
sigma_2(n) is the sum of the squares of the divisors of n (A001157).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..6000 (terms 1..1000 from Ivan Neretin)
MAPLE
m:= 0: res:= NULL:
for n from 1 to 500 do
r:= numtheory:-sigma[2](n)/n;
if r > m then
m:= r;
res:= res, n;
fi
od:
res; # Robert Israel, Nov 12 2016
MATHEMATICA
a=0; Do[b=DivisorSigma[2, n]/n; If[b>a, a=b; Print[n]], {n, 1, 10^7}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jun 09 2000
EXTENSIONS
Name edited by Michel Marcus, Nov 12 2016
STATUS
approved