A118074 Start with 1 and repeatedly reverse the digits and add 41 to get the next term.
1, 42, 65, 97, 120, 62, 67, 117, 752, 298, 933, 380, 124, 462, 305, 544, 486, 725, 568, 906, 650, 97, 120, 62, 67, 117, 752, 298, 933, 380, 124, 462, 305, 544, 486, 725, 568, 906, 650, 97, 120, 62, 67, 117, 752, 298, 933, 380, 124, 462, 305, 544, 486, 725
Offset: 1
Links
- N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
Programs
-
Mathematica
NestList[FromDigits[Reverse[IntegerDigits[#]]]+41&,1,60] (* Harvey P. Dale, May 28 2014 *)
Extensions
Corrected by Harvey P. Dale, May 28 2014
Comments