login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A118617
Start with 1 and repeatedly reverse the digits and add 31 to get the next term.
0
1, 32, 54, 76, 98, 120, 52, 56, 96, 100, 32, 54, 76, 98, 120, 52, 56, 96, 100, 32, 54, 76, 98, 120, 52, 56, 96, 100, 32, 54, 76, 98, 120, 52, 56, 96, 100, 32, 54, 76, 98, 120, 52, 56, 96, 100, 32, 54, 76, 98, 120, 52, 56, 96, 100, 32, 54, 76, 98, 120, 52, 56, 96, 100, 32, 54
OFFSET
1,2
COMMENTS
After 1 step enters a cycle of length 9.
LINKS
N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
MATHEMATICA
NestList[FromDigits[Reverse[IntegerDigits[#]]]+31&, 1, 70] (* Harvey P. Dale, Dec 25 2012 *)
NestList[IntegerReverse[#]+31&, 1, 70] (* Harvey P. Dale, Aug 28 2021 *)
CROSSREFS
KEYWORD
base,nonn,less,easy
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), May 08 2006
STATUS
approved