A118150 Start with 1 and repeatedly reverse the digits and add 53 to get the next term.
1, 54, 98, 142, 294, 545, 598, 948, 902, 262, 315, 566, 718, 870, 131, 184, 534, 488, 937, 792, 350, 106, 654, 509, 958, 912, 272, 325, 576, 728, 880, 141, 194, 544, 498, 947, 802, 261, 215, 565, 618, 869, 1021, 1254, 4574, 4807, 7137, 7370, 790, 150, 104
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
- N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
Programs
-
Mathematica
NestList[IntegerReverse[#]+53&,1,60] (* Harvey P. Dale, Sep 21 2023 *)
Extensions
Corrected by Harvey P. Dale, Apr 19 2014
Comments