A064001 Odd abundant numbers not divisible by 5.
81081, 153153, 171171, 189189, 207207, 223839, 243243, 261261, 279279, 297297, 351351, 459459, 513513, 567567, 621621, 671517, 729729, 742203, 783783, 793611, 812889, 837837, 891891, 908523, 960687, 999999, 1024947, 1054053, 1072071
Offset: 1
Keywords
References
- David Wells, The Penguin Dictionary of Curious and Interesting Numbers, Rev. ed. 1997, p. 169.
Links
- David A. Corneth, Table of n, a(n) for n = 1..10000 (first 1000 terms from Harry J. Smith)
- Carlos Rivera, Puzzle 329. Odd abundant numbers not divided by 2 or 3, The Prime Puzzles and Problems Connection.
- Jay L. Schiffman, Odd Abundant Numbers, Mathematical Spectrum, Volume 37, Number 2 (January 2005), pp 73-75.
Programs
-
Mathematica
Select[ Range[ 1, 10^6, 2 ], DivisorSigma[ 1, # ] - 2# > 0 && Mod[ #, 5 ] != 0 & ] ta={{0}};Do[g=n;s=DivisorSigma[1, n]-2*n; If[Greater[s, 0]&&!Equal[Mod[n, 2], 0]&& !Equal[Mod[n, 5], 0], Print[n];ta=Append[ta, n]], {n, 1, 2000000}] ta=Delete[ta, 1] (* Labos Elemer, Sep 15 2005 *)
-
PARI
{ n=0; forstep (m=1, 10^9, 2, if (m%5 && sigma(m) > 2*m, write("b064001.txt", n++, " ", m); if (n==1000, break)) ) } \\ Harry J. Smith, Sep 05 2009
Extensions
More terms from Robert G. Wilson v, Sep 28 2001
Further terms from Labos Elemer, Sep 15 2005
Entry revised by N. J. A. Sloane, Mar 28 2006
Comments