login
A046156
Limit set for operation of repeatedly replacing a number with the sum of the cubes of its digits.
6
0, 1, 55, 133, 136, 153, 160, 217, 244, 250, 352, 370, 371, 407, 919, 1459
OFFSET
1,3
COMMENTS
Range of A165330; A165330(a(n))=a(n); A165331(a(n))=0. - Reinhard Zumkeller, Sep 17 2009
MATHEMATICA
lst = {}; k = 0; While[k < 1500, a = NestWhile[Plus @@ (IntegerDigits@ #^3) &, k, Unequal, All]; If[FreeQ[lst, a], AppendTo[lst, a]]; k++]; Sort@ lst (* Robert G. Wilson v, Jan 19 2006, revised Jan 03 2015 *)
Table[Nest[Total[IntegerDigits[#]^3]&, n, 30], {n, 0, 1500}]//Union (* Harvey P. Dale, Aug 04 2018 *)
CROSSREFS
Sequence in context: A208294 A039442 A063324 * A224459 A218161 A044306
KEYWORD
nonn,fini,full,base
AUTHOR
Richard C. Schroeppel
STATUS
approved