A118153 Start with 1 and repeatedly reverse the digits and add 57 to get the next term.
1, 58, 142, 298, 949, 1006, 6058, 8563, 3715, 5230, 382, 340, 100, 58, 142, 298, 949, 1006, 6058, 8563, 3715, 5230, 382, 340, 100, 58, 142, 298, 949, 1006, 6058, 8563, 3715, 5230, 382, 340, 100, 58, 142, 298, 949, 1006, 6058, 8563, 3715, 5230, 382, 340
Offset: 1
Links
- N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
Programs
-
Mathematica
NestList[FromDigits[Reverse[IntegerDigits[#]]]+57&,1,50] (* Harvey P. Dale, Feb 23 2012 *)
Comments