OFFSET
0,9
COMMENTS
Number of partitions of n into parts 3, 4, 8, and 9. - Vincenzo Librandi, Jun 03 2014
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,0,1,1,0,0,-1,1,1,0,-1,-2,-1,0,1,1,-1,0,0,1,1,0,0,-1).
FORMULA
a(n) = floor((n^3+36*n^2+204*n+2592)/5184 - (n mod 2)*n/64 + ((2*n^2+1) mod 3)*n/27 + ((n^3+n^2+n+2) mod 4)*n/32 + ((n^2+n+2) mod 4)/4 - ((n^3+n^2+2*n) mod 4)/6). - Hoang Xuan Thanh, Mar 23 2026
MATHEMATICA
CoefficientList[Series[1/((1 - x^3) (1 - x^4) (1 - x^8) (1 - x^9)), {x, 0, 70}], x] (* Harvey P. Dale, Sep 18 2011 *)
PROG
(PARI) Vec(1/((1-x^3)*(1-x^4)*(1-x^8)*(1-x^9)) + O(x^80)) \\ Jinyuan Wang, Mar 12 2020
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
