A341207 Number of ways to write n as an ordered sum of 10 nonzero decimal palindromes.
1, 10, 55, 220, 715, 2002, 5005, 11440, 24310, 48610, 92288, 167500, 292180, 491920, 802120, 1270324, 1958605, 2945800, 4329370, 6226580, 8774695, 12129890, 16464610, 21963190, 28815655, 37209766, 47321560, 59304730, 73279565, 89322100, 107454362, 127636600, 149762345, 173657020
Offset: 10
Links
- Alois P. Heinz, Table of n, a(n) for n = 10..10000
Crossrefs
Programs
-
Mathematica
nmax = 43; CoefficientList[Series[Sum[Boole[PalindromeQ[k]] x^k, {k, 1, nmax}]^10, {x, 0, nmax}], x] // Drop[#, 10] &