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!)
A091790 Palindromes obtained as the concatenation of three successive terms of A091789. 2

%I #10 Jul 01 2022 10:10:58

%S 1221,221122,2112222112,1222211221122221,22112211222211222211221122,

%T 211222211222211221122221122112222112222112,

%U 12222112211222211221122221122221122112222112222112211222211221122221

%N Palindromes obtained as the concatenation of three successive terms of A091789.

%C a(13) with 1220 digits is the first term > 10^1000. - _Michael S. Branicky_, Jul 01 2022

%H Michael S. Branicky, <a href="/A091790/b091790.txt">Table of n, a(n) for n = 1..12</a>

%o (Python)

%o from itertools import count, islice

%o def agen():

%o s, t = "1", "2"

%o while True:

%o u = (s+t)[::-1]

%o yield int(s+t+u)

%o s, t = t, u

%o print(list(islice(agen(), 7))) # _Michael S. Branicky_, Jul 01 2022

%Y Cf. A091789.

%K base,nonn

%O 1,1

%A _Amarnath Murthy_, Feb 18 2004

%E More terms from _Max Alekseyev_, Sep 19 2009

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 July 29 10:13 EDT 2024. Contains 374734 sequences. (Running on oeis4.)