login
A118254
Start with 16 and repeatedly reverse the digits and add 1 to get the next term.
0
16, 62, 27, 73, 38, 84, 49, 95, 60, 7, 8, 9, 10, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 3
OFFSET
1,1
COMMENTS
After 9 steps enters a cycle of length 9.
LINKS
N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
MATHEMATICA
NestList[IntegerReverse[#]+1&, 16, 100] (* or *) PadRight[{16, 62, 27, 73, 38, 84, 49, 95, 60}, 100, {7, 8, 9, 10, 2, 3, 4, 5, 6}] (* Harvey P. Dale, May 15 2025 *)
CROSSREFS
Cf. A118551.
Sequence in context: A373667 A007831 A214524 * A356249 A066391 A022289
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), May 14 2006
STATUS
approved