OFFSET
0,2
COMMENTS
118 is exceptional in the sense that it appears to be the only number m for which the smallest k such that sumdigits(m^k) = m occurs after the smallest k such that sumdigits(m^k) > m*3/2. If this last limit is decreased to m*4/3, then 31 and 86 also have this property. It appears that no number has this property if the limit is increased to 2m, see also A247889.
It is also remarkable that many values in the sequence are repeated (19, 55, 64, 109, 190, 154, 280, 289, 334 (3 times), 379, 406, 424, ...), while most other numbers never appear.
MATHEMATICA
Total[IntegerDigits[#]]&/@NestList[118#&, 1, 50] (* Harvey P. Dale, Feb 24 2022 *)
PROG
(PARI) a(n)=sumdigits(118^n)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, May 18 2017
STATUS
approved