A118090 Start with 1 and repeatedly reverse the digits and add 44 to get the next term.
1, 45, 98, 133, 375, 617, 760, 111, 155, 595, 639, 980, 133, 375, 617, 760, 111, 155, 595, 639, 980, 133, 375, 617, 760, 111, 155, 595, 639, 980, 133, 375, 617, 760, 111, 155, 595, 639, 980, 133, 375, 617, 760, 111, 155, 595, 639, 980, 133, 375, 617, 760
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[#]+44&,1,60] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Feb 03 2021 *)
Comments