login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A091790
Palindromes obtained as the concatenation of three successive terms of A091789.
2
1221, 221122, 2112222112, 1222211221122221, 22112211222211222211221122, 211222211222211221122221122112222112222112, 12222112211222211221122221122221122112222112222112211222211221122221
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