OFFSET
0,5
COMMENTS
Number of partitions of n into parts 1, 4, 8, and 11. - Joerg Arndt, Jul 06 2014
LINKS
Index entries for linear recurrences with constant coefficients, signature (1, 0, 0, 1, -1, 0, 0, 1, -1, 0, 1, -2, 1, 0, -1, 1, 0, 0, -1, 1, 0, 0, 1, -1).
MATHEMATICA
CoefficientList[Series[1/((1 - x) (1 - x^4) (1 - x^8) (1 - x^11)), {x, 0, 60}], x] (* Wesley Ivan Hurt, Jul 06 2014 *)
LinearRecurrence[{1, 0, 0, 1, -1, 0, 0, 1, -1, 0, 1, -2, 1, 0, -1, 1, 0, 0, -1, 1, 0, 0, 1, -1}, {1, 1, 1, 1, 2, 2, 2, 2, 4, 4, 4, 5, 7, 7, 7, 8, 11, 11, 11, 13, 16, 16, 17, 19}, 60] (* Harvey P. Dale, Jul 01 2015 *)
PROG
(PARI) a(n)=round((n+12)*(2*n^2+48*n+187+33*(-1)^n)/4224+(n+12-(n+7)*(n%2))*(-1)^(n\2)/32) \\ Tani Akinari, Jul 06 2014
(PARI) Vec(1/((1-x)*(1-x^4)*(1-x^8)*(1-x^11)) + O(x^70)) \\ Michel Marcus, Jul 06 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved