login
A118238
Start with 15 and repeatedly reverse the digits and add 1 to get the next term.
0
15, 52, 26, 63, 37, 74, 48, 85, 59, 96, 70, 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
OFFSET
1,1
COMMENTS
After 11 steps enters a cycle of length 9.
LINKS
N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
MATHEMATICA
NestList[FromDigits[Reverse[IntegerDigits[#]]]+1&, 15, 100] (* Harvey P. Dale, Jul 26 2015 *)
CROSSREFS
Cf. A118551.
Sequence in context: A009962 A211563 A214522 * A015234 A295339 A346824
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), May 14 2006
STATUS
approved