A055721 Numbers n such that sigma_2(n)/n > sigma_2(k)/k for all k < n.
1, 2, 3, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 28, 30, 36, 40, 42, 48, 54, 60, 66, 70, 72, 78, 80, 84, 90, 96, 108, 120, 132, 140, 144, 150, 156, 168, 180, 192, 204, 210, 216, 228, 240, 252, 264, 270, 276, 288, 300, 312, 324, 330, 336, 348, 360, 384, 396, 408
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..6000 (terms 1..1000 from Ivan Neretin)
Crossrefs
Programs
-
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}]
Extensions
Name edited by Michel Marcus, Nov 12 2016
Comments