OFFSET
0,2
COMMENTS
Number of even palindromes < 10^n.
LINKS
Eric Weisstein's World of Mathematics, Palindromic Number
Index entries for linear recurrences with constant coefficients, signature (1,10,-10).
MATHEMATICA
nmax = 28; CoefficientList[Series[(1 + 4 x - 6 x^2)/((1 - x) (1 - 10 x^2)), {x, 0, nmax}], x]
LinearRecurrence[{1, 10, -10}, {1, 5, 9}, 29]
PROG
(PARI) Vec((1 + 4*x - 6*x^2) / ((1 - x) * (1 - 10*x^2)) + O(x^30)) \\ Michel Marcus, Oct 13 2019
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Ilya Gutkovskiy, Oct 12 2019
STATUS
approved