A120216 Start with 100013 and repeatedly reverse the digits and add 2 to get the next term.
100013, 310003, 300015, 510005, 500017, 710007, 700019, 910009, 900021, 120011, 110023, 320013, 310025, 520015, 510027, 720017, 710029, 920019, 910031, 130021, 120033, 330023, 320035, 530025, 520037, 730027, 720039, 930029, 920041, 140031
Offset: 1
Links
- Klaus Brockhaus, Table of n, a(n) for n = 1..1890
- N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
- Index entries for linear recurrences with constant coefficients, order 1890.
Programs
-
Mathematica
NestList[FromDigits[Reverse[IntegerDigits[#]]]+2&,100013,30] (* Harvey P. Dale, Oct 03 2014 *)
Comments