A281301 Trajectory of 1000004999700144385 under the "Reverse and Add!" operation.
1000004999700144385, 6834415079694144386, 13668830049399288772, 41457129443403175403, 71914259877895350817, 143719619755790592734, 581014717313707510075, 1151030424627424920260, 1771324671891665221771, 3542550333873429453542, 5996099577656760005995
Offset: 0
Examples
a(1) = 1000004999700144385 + 5834410079994000001 = 6834415079694144386.
References
- Popular Computing (Calabasas, CA), The 196 Problem, Vol. 3 (No. 30, Sep 1975).
Links
- Sergei D. Shchebetov, Table of n, a(n) for n = 0..259
- Jason Doucette, World Records
- Yutaka Nishiyama, Numerical Palindromes and the 196 Problem, International Journal of Pure and Applied Mathematics, Volume 80, No. 3, 2012, 375-384.
- R. Styer, The Palindromic Conjecture and the Fibonacci Sequence, Villanova University, 1986, 1-11.
- C. W. Trigg, Palindromes by Addition, Mathematics Magazine, 40 (1967), 26-28.
- C. W. Trigg, More on Palindromes by Reversal-Addition, Mathematics Magazine, 45 (1972), 184-186.
- Wikipedia, Lychrel Number
- 196 and Other Lychrel Numbers, 196 and Lychrel Number
- Index entries for sequences related to Reverse and Add!
Crossrefs
Programs
-
Mathematica
NestList[#+IntegerReverse[#]&,1000004999700144385,10] (* Harvey P. Dale, Dec 24 2021 *)
-
PARI
terms(n) = my(x=1000004999700144385, i=0); while(1, print1(x, ", "); x=x+eval(concat(Vecrev(Str(x)))); i++; if(i==n, break)) /* Print initial 9 terms as follows: */ terms(9) \\ Felix Fröhlich, Jan 21 2017
Formula
a(n+1) = a(n) + rev(a(n)).
Extensions
a(9)-a(10) from Felix Fröhlich, Jan 21 2017
Comments