A118154 Start with 1 and repeatedly reverse the digits and add 58 to get the next term.
1, 59, 153, 409, 962, 327, 781, 245, 600, 64, 104, 459, 1012, 2159, 9570, 817, 776, 735, 595, 653, 414, 472, 332, 291, 250, 110, 69, 154, 509, 963, 427, 782, 345, 601, 164, 519, 973, 437, 792, 355, 611, 174, 529, 983, 447, 802, 266, 720, 85, 116, 669, 1024, 4259
Offset: 1
Links
- N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
Programs
-
Mathematica
NestList[FromDigits[Reverse[IntegerDigits[#]]]+58&,1,60] (* Harvey P. Dale, Feb 22 2012 *)
Comments