OFFSET
1,2
COMMENTS
These are the palindromes in A244541.
All palindromes with a zero will be in this sequence.
The palindromes that do not contain a zero but do satisfy the definition begin 1, 2, 3, 4, 252, 15451, 25152, 25252, 25352, 25452, 36563, 51415, 52125, 52225, 52325, 52425, 63536, 92529, 1455541, 1545451, 1954591 . . . - Harvey P. Dale, May 14 2019
EXAMPLE
101 - 1*0*1 and 101 + 1*0*1 are both palindromes (still 101). So 101 is a member of this sequence.
PROG
(PARI) rev(n)={r=""; for(i=1, #digits(n), r=concat(Str(digits(n)[i]), r)); return(eval(r))}
for(n=1, 10^5, if(rev(n)==n, dig=digits(n); p=prod(k=1, #dig, dig[k]); mi=n-p; ma=n+p; if(rev(mi)==mi&&rev(ma)==ma, print1(n, ", "))))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Derek Orr, Jun 29 2014
STATUS
approved