OFFSET
1,1
COMMENTS
Dean Hickerson showed that this sequence is infinite.
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..1000
PROG
(Python)
def ispal(n): s = str(n); return s == s[::-1]
def a(n):
m, cm = 1, 2
while cm != n:
cm = cm - ispal(m) + ispal(2*m+1) + ispal(2*m+2)
m += 1
return m
print([a(n) for n in range(1, 55)]) # Michael S. Branicky, Oct 01 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jason Earls and Amarnath Murthy, Jul 22 2003
EXTENSIONS
More terms from Jason Earls, Jul 24 2003
STATUS
approved