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
1221, 221122, 2112222112, 1222211221122221, 22112211222211222211221122, 211222211222211221122221122112222112222112, 12222112211222211221122221122221122112222112222112211222211221122221 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(13) with 1220 digits is the first term > 10^1000. - Michael S. Branicky, Jul 01 2022
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..12
PROG
(Python)
from itertools import count, islice
def agen():
s, t = "1", "2"
while True:
u = (s+t)[::-1]
yield int(s+t+u)
s, t = t, u
print(list(islice(agen(), 7))) # Michael S. Branicky, Jul 01 2022
CROSSREFS
Cf. A091789.
Sequence in context: A233660 A015279 A179140 * A053655 A068262 A328991
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Feb 18 2004
EXTENSIONS
More terms from Max Alekseyev, Sep 19 2009
STATUS
approved

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 07:46 EDT 2024. Contains 374731 sequences. (Running on oeis4.)