OFFSET
1,1
COMMENTS
These are the numbers k at which the divisor sum sigma(k) is increasing at a rate equal to the average divisor size, sigma(k)/d(k).
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..336
EXAMPLE
sigma(136) - sigma(135) = 270 - 240 = 30 = 240/8 = sigma(135)/d(135).
MATHEMATICA
Select[ Range[ 1, 10^5 ], DivisorSigma[ 1, #+1 ]-DivisorSigma[ 1, # ]==DivisorSigma[ 1, # ]/DivisorSigma[ 0, # ] & ]
PROG
(PARI) { n=0; for (m=1, 10^9, if (sigma(m + 1) - sigma(m) == sigma(m)/numdiv(m), write("b066176.txt", n++, " ", m); if (n==1000, return)) ) } \\ Harry J. Smith, Feb 05 2010
CROSSREFS
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Dec 14 2001
EXTENSIONS
More terms from Robert Gerbicz, Aug 21 2006
Corrected by T. D. Noe, Oct 25 2006
STATUS
approved