A118157 Start with 1 and repeatedly reverse the digits and add 62 to get the next term.
1, 63, 98, 151, 213, 374, 535, 597, 857, 820, 90, 71, 79, 159, 1013, 3163, 3675, 5825, 5347, 7497, 8009, 9070, 771, 239, 994, 561, 227, 784, 549, 1007, 7063, 3669, 9725, 5341, 1497, 8003, 3070, 765, 629, 988, 951, 221, 184, 543, 407, 766, 729, 989, 1051
Offset: 1
Links
- N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
Programs
-
Mathematica
NestList[IntegerReverse[#]+62&,1,50] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Sep 30 2018 *)
Extensions
Corrected by Harvey P. Dale, Sep 30 2018
Comments