A118148 Start with 1 and repeatedly reverse the digits and add 51 to get the next term.
1, 52, 76, 118, 862, 319, 964, 520, 76, 118, 862, 319, 964, 520, 76, 118, 862, 319, 964, 520, 76, 118, 862, 319, 964, 520, 76, 118, 862, 319, 964, 520, 76, 118, 862, 319, 964, 520, 76, 118, 862, 319, 964, 520, 76, 118, 862, 319, 964, 520, 76, 118, 862, 319, 964
Offset: 1
Links
- N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
Programs
-
Mathematica
NestList[IntegerReverse[#]+51&,1,60] (* or *) PadRight[{1,52},60,{964,520,76,118,862,319}] (* Harvey P. Dale, Jul 17 2024 *)
Comments