OFFSET
0,9
COMMENTS
Number of partitions of n into parts from {4,7,8,11}. Example: a(15)=3 because we have [11,4],[8,7] and [7,4,4]. - Emeric Deutsch, Mar 06 2006
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,0,0,1,0,0,1,1,0,0,0,-1,0,0,-2,0,0,-1,0,0,0,1,1,0,0,1,0,0,0,-1).
FORMULA
a(n) = floor((n+43)*(n^2+2*n+180)/14784 - (n mod 2)*n/64 + ((n^3+2*n+1) mod 4)*n/32 - (15*((n^3+n^2) mod 4) + 9*((n^3+3*n) mod 4))/32 + (((5*n^3+5*n^2+10*n+10) mod 11) + ((n+5) mod 11) - ((n+4) mod 11) - ((n+3) mod 11) + ((n+2) mod 11))/11). - Hoang Xuan Thanh, May 15 2026
MAPLE
g:=1/(1-x^4)/(1-x^7)/(1-x^8)/(1-x^11): gser:=series(g, x=0, 70): seq(coeff(gser, x, n), n=0..66); # Emeric Deutsch, Mar 06 2006
MATHEMATICA
CoefficientList[Series[1/((1-x^4)(1-x^7)(1-x^8)(1-x^11)), {x, 0, 70}], x] (* Harvey P. Dale, Mar 02 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
