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”).

A028503
Numbers k such that k*(k+2) is a palindrome.
3
0, 1, 2, 9, 17, 23, 64, 75, 99, 191, 204, 999, 1747, 1907, 2365, 2966, 5731, 9999, 18991, 20564, 99999, 174601, 174747, 179317, 243063, 293786, 552101, 999999, 1868287, 2967032, 9200156, 9999999, 22765895, 31552659, 93809716, 99999999, 185812387, 999999999
OFFSET
1,3
FORMULA
a(n) = A070253(n) - 1. a(n) * (a(n) + 2) = A028504(n). - Giovanni Resta, Aug 29 2018
MATHEMATICA
palQ[n_] := Block[{d = IntegerDigits[n]}, d == Reverse[d]]; Select[Range[0, 10^5], palQ[# (# + 2)] &] (* Giovanni Resta, Aug 29 2018 *)
CROSSREFS
KEYWORD
nonn,base
EXTENSIONS
More terms from Giovanni Resta, Aug 28 2018
STATUS
approved