OFFSET
1,1
EXAMPLE
11 is a term because the eleventh palindrome is 11.
12221 is in the sequence because the 222nd palindrome is 12221.
101101 is a member because it is the 1101st palindrome.
MATHEMATICA
(* first load 'nthPalindrome' from A002113 and then *) nPal[n_] := nthPalindrome[n - 1]; fQ[n_] := StringPosition[ ToString[ nPal[ n]], ToString[ n]] != {}; k = 1; lst = {}; While[k < 3001, If[fQ[k], AppendTo[lst, nPal[ k]]]; k++]; lst
PROG
(Python)
from itertools import count, islice
def A248753_gen(startvalue=2): # generator of terms >= startvalue
def f(n):
y = 10*(x:=10**(len(str(n>>1))-1))
return (c:=n-x)*x+int(str(c)[-2::-1] or 0) if n<x+y else (c:=n-y)*y+int(str(c)[::-1] or 0)
for n in count(max(2, startvalue)):
if str(n) in str(k:=f(n)):
yield k
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Robert G. Wilson v, Oct 13 2014
STATUS
approved