cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A281301 Trajectory of 1000004999700144385 under the "Reverse and Add!" operation.

Original entry on oeis.org

1000004999700144385, 6834415079694144386, 13668830049399288772, 41457129443403175403, 71914259877895350817, 143719619755790592734, 581014717313707510075, 1151030424627424920260, 1771324671891665221771, 3542550333873429453542, 5996099577656760005995
Offset: 0

Views

Author

Andrey S. Shchebetov and Sergei D. Shchebetov, Jan 21 2017

Keywords

Comments

1000004999700144385 is the largest of the first 225 numbers that require exactly 259 steps to turn into a palindrome (see A281390). The sequence reaches a 119-digit palindrome after 259 steps (see b-file). The number was obtained empirically using computer algorithms and was not reported before.
Row 1000004999700144385 of the array in A243238. - Felix Fröhlich, Jan 21 2017

Examples

			a(1) = 1000004999700144385 + 5834410079994000001 = 6834415079694144386.
		

References

  • Popular Computing (Calabasas, CA), The 196 Problem, Vol. 3 (No. 30, Sep 1975).

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