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.

Showing 1-8 of 8 results.

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

A281506 Numbers which require exactly 261 'Reverse and Add' steps to reach a palindrome.

Original entry on oeis.org

1186060307891929990, 1186060317791929990, 1186060327691929990, 1186060337591929990, 1186060347491929990, 1186060357391929990, 1186060367291929990, 1186060377191929990, 1186060387091929990, 1186060407881929990, 1186060417781929990, 1186060427681929990, 1186060437581929990
Offset: 1

Views

Author

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

Keywords

Comments

The sequence starts with 1186060307891929990 (the 19-digit number also known as "the most delayed palindrome" and claimed as the world record, discovered by Jason Doucette on Nov 30 2005 and rediscovered by Vaughn Suite on Jan 02 2006) and continues for another 125 terms (none previously reported) each turning into a 119-digit palindrome after 261 steps until the sequence ends with 1186061987030929990. The distance between successive terms in the reported sequence has 9000000 as the greatest common divisor. No further numbers beyond 1186061987030929990 belonging to the same sequence are known, discovered or reported. The sequence was found empirically using computer modeling algorithms.
The sequence was extended to 108864 terms in total and ends with 1999291987030606810 - the last term of A281508 (see a-file). The sequence is complete - no further numbers beyond 1999291987030606810 belonging to the same sequence exist. The sequence was predicted theoretically and found empirically using computer modeling algorithms. - Sergei D. Shchebetov, May 12 2017
Comments from Sergei D. Shchebetov, Nov 14 2019: (Start)
There are two reasons that 1186060307891929990 cannot be the smallest term.
(1) Empirical: All numbers below were tested and none was found to have 261 (or higher) steps delay. This is presented, for example, in the Doucette link.
(2) Theoretical: There is no other combinations of the digits at 1186060307891929990 that gives you a lower number with the same reverse-and-sum result after the first step. This is because the number starts with 1 and you cannot go below 1 for the largest digit. Then it has 9s as the last 3 smallest digits and you cannot go up from there, but you could go down for the smallest digits (meaning up for the largest). For example, 1286060307891929980 (look at changes in the second digit from both ends: 1 turns into 2 and 9 turns into 8 with the sum staying 10 in both cases) would have the same 261-step delay. Same is with 1386060307891929970, etc. If you calculate all possible combinations where the pairwise sum of the digits stays the same, you will get 108864 terms.
Also, since 2005, when 1186060307891929990 was discovered, people have checked all numbers up to 23-digit range and found none (except for our set) with 261-step (or higher) delays. So finding a number with a 288-step delay, as Rob van Nobelen did, was a real breakthrough.
(End)

Examples

			Each term requires exactly 261 steps to turn into a 119-digit palindrome, the last term of A281507, and is separated by some multiples of 9000000 from the adjacent sequence terms.
		

References

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

Crossrefs

A281507 Trajectory of 1186061987030929990 under the "Reverse and Add!" operation.

Original entry on oeis.org

1186061987030929990, 2185352294922536801, 3271704589845072613, 6434410079699144336, 12768830049399288682, 41457129443403175403, 71914259877895350817, 143719619755790592734, 581014717313707510075, 1151030424627424920260, 1771324671891665221771
Offset: 0

Views

Author

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

Keywords

Comments

1186061987030929990 is the largest of the first 126 numbers that require exactly 261 steps to turn into a palindrome (see A281506). The sequence reaches a 119-digit palindrome after 261 steps (see b-file). The number was obtained empirically using computer algorithms and was not reported before.

Examples

			a(1) = 1186061987030929990 + 999290307891606811 = 2185352294922536801.
		

References

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

Crossrefs

Programs

  • Magma
    k:=1186061987030929990; [n eq 1 select k else Self(n-1) + Seqint(Reverse(Intseq(Self(n-1)))): n in [1..20]]; // Bruno Berselli, Jan 23 2017
  • Mathematica
    NestList[#+IntegerReverse[#]&,1186061987030929990,20] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jan 17 2019 *)

Formula

a(n+1) = a(n) + rev(a(n)).

A281508 Numbers requiring exactly 261 'Reverse and Add' steps to reach a palindrome.

Original entry on oeis.org

1999290307891606810, 1999290317791606810, 1999290327691606810, 1999290337591606810, 1999290347491606810, 1999290357391606810, 1999290367291606810, 1999290377191606810, 1999290387091606810, 1999290407881606810, 1999290417781606810, 1999290427681606810, 1999290437581606810
Offset: 1

Views

Author

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

Keywords

Comments

The sequence starts with 1999290307891606810 and continues for another 125 terms (none previously reported, including the first term) each turning into a 119-digit palindrome after 261 steps until the sequence ends with 1999291987030606810. The distance between successive terms in the reported sequence has 9000000 as the greatest common divisor. No further numbers beyond 1999291987030606810 belonging to the same sequence are known, discovered or reported. Moreover, 1999291987030606810 is currently the largest discovered "most delayed palindrome". The sequence was found empirically using computer modeling algorithms.
It is only a conjecture that there are no further terms. - N. J. A. Sloane, Jan 24 2017

Examples

			Each term requires exactly 261 steps to turn into a 119-digit palindrome, the last term of A281509, and is separated by some multiples of 9000000 from the adjacent sequence terms.
		

References

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

Crossrefs

A281509 Trajectory of 1999291987030606810 (the largest presently known "most delayed palindrome") under the "Reverse and Add!" operation.

Original entry on oeis.org

1999291987030606810, 2185352294922536801, 3271704589845072613, 6434410079699144336, 12768830049399288682, 41457129443403175403, 71914259877895350817, 143719619755790592734, 581014717313707510075, 1151030424627424920260, 1771324671891665221771, 3542550333873429453542, 5996099577656760005995
Offset: 0

Views

Author

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

Keywords

Comments

1999291987030606810 is the largest of the 126 presently known numbers that require exactly 261 steps to turn into a palindrome (see A281508). It is also the largest discovered "most delayed palindrome". The sequence reaches a 119-digit palindrome after 261 steps (see b-file). The number was obtained empirically using computer algorithms and was not reported before.

Examples

			a(1) = 1999291987030606810 + 186060307891929991 = 2185352294922536801.
		

References

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

Crossrefs

Formula

a(n+1) = a(n) + rev(a(n)).
a(n) = A281507(n) for n>0. - R. J. Mathar, Jan 27 2017

A326414 Numbers which require exactly 288 'Reverse and Add' steps to reach a palindrome.

Original entry on oeis.org

12000700000025339936491, 12000700001015339936491, 12000700002005339936491, 12000700010024339936491, 12000700011014339936491, 12000700012004339936491, 12000700020023339936491, 12000700021013339936491, 12000700022003339936491, 12000700030022339936491
Offset: 1

Views

Author

Andrey S. Shchebetov and Sergei D. Shchebetov, Oct 18 2019

Keywords

References

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

Crossrefs

Formula

Each term requires exactly 288 steps to turn into a 142-digit palindrome.

Extensions

Deleted an erroneous comment that said that the sequence was finite. - N. J. A. Sloane, Jun 23 2022

A286481 Numbers which require exactly 260 'Reverse and Add' steps to reach a palindrome.

Original entry on oeis.org

1003062289999939142, 1003062299899939142, 1003062389989939142, 1003062399889939142, 1003062489979939142, 1003062499879939142, 1003062589969939142, 1003062599869939142, 1003062689959939142, 1003062699859939142, 1003062789949939142, 1003062799849939142, 1003062889939939142, 1003062899839939142, 1003062989929939142, 1003062999829939142
Offset: 1

Views

Author

Andrey S. Shchebetov and Sergei D. Shchebetov, May 12 2017

Keywords

Comments

The sequence starts with 1003062289999939142 (the 19-digit number discovered by Vaughn Suite on Mar 19 2006) and continues for another 430079 terms (none previously reported) each turning into a 119-digit palindrome after 260 steps until the sequence ends with 3419399999822603000 (see a-file). No further numbers beyond 3419399999822603000 belonging to the same sequence exist. The sequence was predicted theoretically and found empirically using computer modeling algorithms. For the first 100 terms of the sequence see b-file.

Examples

			a(1) = 1003062289999939142 + 2419399999822603001 = 3422462289822542143
		

References

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

Crossrefs

Formula

a(n+1) = a(n) + rev(a(n)).

A353185 Numbers which require exactly 289 'Reverse and Add' steps to reach a palindrome.

Original entry on oeis.org

10037000230509917799950, 10037000240508917799950, 10037000250507917799950, 10037000260506917799950, 10037000270505917799950, 10037000280504917799950, 10037000290503917799950, 10037000330509817799950, 10037000340508817799950
Offset: 1

Views

Author

Andrey S. Shchebetov and Sergei D. Shchebetov, Apr 29 2022

Keywords

Comments

The sequence starts with 10037000230509917799950, ends with 15999771990503200073000 and contains 9031680 terms known at present, including 13968441660506503386020 and 13568441660506503386420 discovered by Anton Stefanov on January 5, 2021.

References

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

Crossrefs

Formula

Each term requires exactly 289 steps to turn into a 142-digit palindrome.
Showing 1-8 of 8 results.