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
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Feb 18 2004
EXTENSIONS
More terms from Max Alekseyev, Sep 19 2009
STATUS
approved