A118162 Start with 1 and repeatedly reverse the digits and add 60 to get the next term.
1, 61, 76, 127, 781, 247, 802, 268, 922, 289, 1042, 2461, 1702, 2131, 1372, 2791, 2032, 2362, 2692, 3022, 2263, 3682, 2923, 3352, 2593, 4012, 2164, 4672, 2824, 4342, 2494, 5002, 2065, 5662, 2725, 5332, 2395, 5992, 3055, 5563, 3715, 5233, 3385, 5893, 4045
Offset: 1
Links
- Harvey P. Dale, 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[#]+60&,1,50] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Aug 10 2017 *)
Formula
Never reaches a cycle (see A117816).