login
A029338
Expansion of 1/((1-x^4)*(1-x^5)*(1-x^8)*(1-x^10)).
0
1, 0, 0, 0, 1, 1, 0, 0, 2, 1, 2, 0, 2, 2, 2, 2, 3, 2, 4, 2, 6, 3, 4, 4, 7, 6, 6, 4, 10, 7, 10, 6, 11, 10, 12, 10, 14, 11, 16, 12, 20, 14, 18, 16, 23, 20, 22, 18, 29, 23, 30, 22, 32, 29, 34, 30, 38, 32, 42, 34, 48, 38, 46, 42
OFFSET
0,9
COMMENTS
Number of partitions of n into parts 4, 5, 8, and 10. - Hoang Xuan Thanh, Apr 22 2026
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,0,0,1,1,0,0,1,-1,1,0,-1,-1,-1,-1,0,1,-1,1,0,0,1,1,0,0,0,-1).
FORMULA
a(n) = floor((n^3+48*n^2+356*n+1920)/9600 - (n mod 2)*(n^2+27*n)/640 + ((n^2+3*n+2) mod 4)*n/64 + ((n^2+2*n+2) mod 5)*n/50 + ((n^3+2*n^2+3*n+4) mod 5)/5). - Hoang Xuan Thanh, Apr 22 2026
MATHEMATICA
CoefficientList[Series[1/((1-x^4)(1-x^5)(1-x^8)(1-x^10)), {x, 0, 70}], x] (* Harvey P. Dale, Nov 01 2011 *)
(* Alternative: *)
LinearRecurrence[{0, 0, 0, 1, 1, 0, 0, 1, -1, 1, 0, -1, -1, -1, -1, 0, 1, -1, 1, 0, 0, 1, 1, 0, 0, 0, -1}, {1, 0, 0, 0, 1, 1, 0, 0, 2, 1, 2, 0, 2, 2, 2, 2, 3, 2, 4, 2, 6, 3, 4, 4, 7, 6, 6}, 70] (* Harvey P. Dale, Apr 16 2016 *)
PROG
(PARI) Vec(1/((1-x^4)*(1-x^5)*(1-x^8)*(1-x^10)) + O(x^90)) \\ Hoang Xuan Thanh, Apr 22 2026
CROSSREFS
Sequence in context: A334956 A335881 A239703 * A240883 A048272 A112329
KEYWORD
nonn,easy
STATUS
approved