A119902 Start with 100016 and repeatedly reverse the digits and add 5 to get the next term.
100016, 610006, 600021, 120011, 110026, 620016, 610031, 130021, 120036, 630026, 620041, 140031, 130046, 640036, 630051, 150041, 140056, 650046, 640061, 160051, 150066, 660056, 650071, 170061, 160076, 670066, 660081, 180071, 170086, 680076
Offset: 1
Links
- Klaus Brockhaus, Table of n, a(n) for n = 1,...,756
- N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
Programs
-
Mathematica
NestList[FromDigits[Reverse[IntegerDigits[#]]]+5&,100016,40] (* Harvey P. Dale, Feb 24 2011 *)
Comments