A240022 Total number of digits in palindromes with n digits.
10, 18, 270, 360, 4500, 5400, 63000, 72000, 810000, 900000, 9900000, 10800000, 117000000, 126000000, 1350000000, 1440000000, 15300000000, 16200000000, 171000000000, 180000000000, 1890000000000, 1980000000000, 20700000000000, 21600000000000
Offset: 1
Examples
There are nine 2-digit palindromes, so a(2) = 2*9 = 18.
Links
Programs
-
PARI
print1("10, 18, "); m=9; for(n=3, 24, if(bitand(n, 1), m=10*m); print1(m*n, ", "));
-
PARI
Vec(2*x*(50*x^4+35*x^2+9*x+5)/(10*x^2-1)^2 + O(x^100)) \\ Colin Barker, Mar 31 2014
Formula
a(n) = n*A070252(n).
a(n) = 20*a(n-2)-100*a(n-4) for n>5. G.f.: 2*x*(50*x^4+35*x^2+9*x+5) / (10*x^2-1)^2. - Colin Barker, Mar 31 2014
Comments