OFFSET
1,3
COMMENTS
Conjecture: For any positive integer starting value n, iterations of n -> n + tau(n) will eventually join A064491 (verified for all n up to 50000).
The graph looks like a forest of stalks. The tops of the stalks form A036434. - N. J. A. Sloane, Jan 17 2013
REFERENCES
Claudia Spiro, Problem proposed at West Coast Number Theory Meeting, 1977. - From N. J. A. Sloane, Jan 11 2013
LINKS
T. D. Noe, Table of n, a(n) for n = 1..11000
T. D. Noe, Logarithmic plot of 10^6 terms
EXAMPLE
MATHEMATICA
s = 1; t = Join[{s}, Table[s = s + DivisorSigma[0, s], {n, 2, 1000}]]; mx = Max[t]; Table[r = n; gen = 0; While[r < mx && ! MemberQ[t, r], gen++; r = r + DivisorSigma[0, r]]; If[r >= mx, gen = -1]; gen, {n, 100}] (* T. D. Noe, Jan 13 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Jason Earls, Jun 28 2004
EXTENSIONS
Escape clause added to definition by N. J. A. Sloane, Nov 09 2020
STATUS
approved