login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A006960 Reverse and Add! sequence starting with 196.
(Formerly M5410)
46

%I M5410 #101 Apr 02 2022 09:35:52

%S 196,887,1675,7436,13783,52514,94039,187088,1067869,10755470,18211171,

%T 35322452,60744805,111589511,227574622,454050344,897100798,1794102596,

%U 8746117567,16403234045,70446464506,130992928913,450822227944,900544455998,1800098901007,8801197801088,17602285712176

%N Reverse and Add! sequence starting with 196.

%C 196 is conjectured to be the smallest initial term which does not lead to a palindrome. John Walker, Tim Irvin and others have extended the trajectory of 196 to millions of digits without finding a palindrome.

%C From _A.H.M. Smeets_, Jan 31 2019: (Start)

%C Palindromes for a(9)/2, a(14)/2 and a(20)/2.

%C Observed: It seems that most, but not all, Lychrel numbers (seeds given in A063048) have a trajectory term that, divided by 2, becomes palindromic. Note that 196 is the first Lychrel number (A063048(1)). (End)

%C Observed: On average, 0.414 digits are gained by each step of the reverse and add procedure; i.e., 2.416 steps are needed on average to gain a factor of 10. This holds for any trajectory of reverse and add for decimal number representation. - _A.H.M. Smeets_, Feb 03 2019

%D J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 196, p. 58, Ellipses, Paris 2008.

%D D. H. Lehmer, "Sujets d'étude. No. 74," Sphinx (Bruxelles), 8 (1938), 12-13. (This is the currently earliest known reference to the 196 Problem). - James D. Klein, Apr 09 2012.

%D Daniel Lignon, Dictionnaire de (presque) tous les nombres entiers, Ellipses, Paris, 2012, 702 pages. See Entry 196.

%D Clifford A. Pickover, A Passion for Mathematics, Wiley, 2005; see p. 70.

%D Popular Computing (Calabasas, CA), The 196 Problem, Vol. 3 (No. 30, Sep 1975), pages PC30-6 to PC30-9.

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H T. D. Noe and Michael Lee, <a href="/A006960/b006960.txt">Table of n, a(n) for n = 0..2390</a> (T. D. Noe supplied terms 0 to 200)

%H Patrick De Geest, <a href="http://www.worldofnumbers.com/weblinks.htm">Some thematic websources</a>

%H Jason Doucette, <a href="http://www.jasondoucette.com/worldrecords.html">World Records</a>

%H Martianus Frederic Ezerman, Bertrand Meyer and Patrick Sole, <a href="http://arxiv.org/abs/1210.7593">On Polynomial Pairs of Integers</a>, arXiv:1210.7593 [math.NT], 2012. - From _N. J. A. Sloane_, Nov 08 2012

%H Felix Fröhlich, <a href="/A006960/a006960.txt">C++ program for this sequence</a>

%H Fred Gruenberger, <a href="https://www.jstor.org/stable/24969338">How to handle numbers with thousands of digits, and why one might want to</a>, Computer Recreations, Scientific American, 250 (No. 4, 1984), 19-26.

%H R. K. Guy, <a href="https://www.jstor.org/stable/25678158">What's left?</a>, Math Horizons, Vol. 5, No. 4 (April 1998), pp. 5-7.

%H Tim Irvin, <a href="http://www.fourmilab.ch/documents/threeyears/two_months_more.html">About Two Months of Computing, or An Addendum to Mr. Walker's Three Years of Computing</a>

%H Madras Math's Amazing Number Facts, <a href="https://web.archive.org/web/20081123022656/http://www.users.zetnet.co.uk/madras/maths/amazingnofacts/fact044.html">The Ultimate Palindrome</a>

%H I. Peter, <a href="https://web.archive.org/web/20110728141631/http://www.floot.demon.co.uk/palindromes.html">More trajectories</a>

%H Wade VanLandingham, <a href="https://web.archive.org/web/20061022000805/http://home.cfl.rr.com/p196/">196 and Other Lychrel Numbers</a>

%H John Walker, <a href="http://www.fourmilab.ch/documents/threeyears/threeyears.html">Three Years Of Computing: Final Report On The Palindrome Quest</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/196-Algorithm.html">196-Algorithm.</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/PalindromicNumberConjecture.html">Palindromic Number Conjecture.</a>

%H <a href="/index/Res#RAA">Index entries for sequences related to Reverse and Add!</a>

%F a(n+1) = A056964(a(n)). - _A.H.M. Smeets_, Jan 27 2019

%e From _M. F. Hasler_, Apr 13 2019: (Start)

%e Start with 196 = a(0), then:

%e A056964(196) = 196 + 691 = 887 = a(1); then:

%e A056964(887) = 887 + 788 = 1675 = a(2); then:

%e A056964(1675) = 1675 + 5761 = 7436 = a(3); then:

%e A056964(7436) = 7436 + 6347 = 13783 = a(4); then:

%e A056964(13783) = 13783 + 38731 = 52514 = a(5); etc. (End)

%p a:= proc(n) option remember; `if`(n=0, 196, (h-> h+ (s->

%p parse(cat(s[-i]$i=1..length(s))))(""||h))(a(n-1)))

%p end:

%p seq(a(n), n=0..40); # _Alois P. Heinz_, Jul 25 2014

%t a = {196}; For[i = 2, i < 26, i++, a = Append[a, a[[i - 1]] + ToExpression[ StringReverse[ToString[a[[i - 1]]]]]]]; a

%t NestList[#+FromDigits[Reverse[IntegerDigits[#]]]&,196,25] (* _Harvey P. Dale_, Jun 05 2011 *)

%t NestList[#+IntegerReverse[#]&,196,25] (* Requires Mathematica version 10 or later *) (* _Harvey P. Dale_, Jan 04 2019 *)

%o (Haskell)

%o a006960 n = a006960_list !! n

%o a006960_list = iterate a056964 196 -- _Reinhard Zumkeller_, Sep 22 2011

%o (PARI) A006960_vec(N=99)=vector(N,i,N=if(i>1,A056964(N),196)) \\ _M. F. Hasler_, Apr 13 2019

%Y Cf. A023108, A023109, A033665, A016016, A056964, A004086.

%K nonn,base,nice,easy

%O 0,1

%A _N. J. A. Sloane_, _Simon Plouffe_

%E More terms from Vit Planocka (planocka(AT)mistral.cz), Sep 28 2002

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)