A171929 Odd numbers whose abundancy is closer to 2 than any smaller odd number.
1, 3, 9, 15, 45, 105, 315, 1155, 7425, 8415, 8925, 31815, 32445, 351351, 442365, 13800465, 14571585, 16286445, 20355825, 20487159, 78524145, 132701205, 159030135, 815634435, 2586415095, 29169504045, 40833636525, 125208115065
Offset: 1
Examples
Example: a(8) = 1155 since sigma(1155)/1155 = 1.9948 which is closer to 2 than any smaller a(n).
Links
- Giovanni Resta, Table of n, a(n) for n = 1..40 (terms < 10^13; first 36 terms from T. D. Noe)
- Mathworld, Abundancy.
- Index entries for sequences where odd perfect numbers must occur, if they exist at all.
Crossrefs
Programs
-
Mathematica
minDiff=Infinity; k=-1; Table[k=k+2; While[abun=DivisorSigma[1,k]/k; Abs[2-abun] > minDiff, k=k+2]; minDiff=Abs[2-abun]; k, {15}] (* T. D. Noe, Jan 28 2010 *)
-
PARI
m=2; forstep(n=1,10^10,2, t=abs(sigma(n)/n - 2); if(t
Max Alekseyev, Jan 26 2010
Extensions
Name improved by T. D. Noe, Jan 28 2010
More terms from Max Alekseyev, T. D. Noe and J. Mulder (jasper.mulder(AT)planet.nl), Jan 26 2010
Comments