A118155 Start with 1 and repeatedly reverse the digits and add 59 to get the next term.
1, 60, 65, 115, 570, 134, 490, 153, 410, 73, 96, 128, 880, 147, 800, 67, 135, 590, 154, 510, 74, 106, 660, 125, 580, 144, 500, 64, 105, 560, 124, 480, 143, 400, 63, 95, 118, 870, 137, 790, 156, 710, 76, 126, 680, 145, 600, 65, 115, 570, 134, 490, 153, 410
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
- N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
Programs
-
Mathematica
NestList[FromDigits[Reverse[IntegerDigits[#]]]+59&,1,80] (* Harvey P. Dale, Feb 25 2014 *)
Extensions
Corrected by Harvey P. Dale, Feb 25 2014
Comments