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
a(n) = n^3/1320 + 3/110*n^2 + O(n). - Charles R Greathouse IV, Jun 02 2026
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 *)
PROG
(PARI) Vec(1/((1-x)*(1-x^2)*(1-x^10)*(1-x^11))+O(x^99)) \\ Charles R Greathouse IV, Jun 02 2026
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
