OFFSET
0,3
COMMENTS
a(n) is the number of partitions of n into parts 1, 2, 10, and 11. - Joerg Arndt, May 13 2017
LINKS
Matthew House, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (1,1,-1,0,0,0,0,0,0,1,0,-2,0,1,0,0,0,0,0,0,-1,1,1,-1).
FORMULA
a(n) = a(n-1) + a(n-2) - a(n-3) + a(n-10) - 2*a(n-12) + a(n-14) - a(n-21) + a(n-22) + a(n-23) - a(n-24). - Matthew House, May 07 2017
MATHEMATICA
CoefficientList[Series[1/((1-x)(1-x^2)(1-x^10)(1-x^11)), {x, 0, 60}], x] (* Harvey P. Dale, Mar 13 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved