OFFSET
0,7
COMMENTS
a(n) is the number of partitions of n into parts 2, 3, 7, and 10. - Hoang Xuan Thanh, Oct 05 2025
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,1,1,0,-1,0,1,0,-1,0,0,0,-1,0,1,0,-1,0,1,1,0,-1).
FORMULA
a(n) = floor((n^3+33*n^2+354*n+1800)/2520 - n*(n mod 2)/40 - (n mod 3)/9 + ((2*n^3+3*n^2+n+2) mod 7)/7). - Hoang Xuan Thanh, Oct 05 2025
MATHEMATICA
CoefficientList[Series[1/((1-x^2)(1-x^3)(1-x^7)(1-x^10)), {x, 0, 60}], x] (* Harvey P. Dale, Sep 06 2014 *)
PROG
(PARI) Vec(1/((1-x^2)*(1-x^3)*(1-x^7)*(1-x^10)) + O(x^80)) \\ Jinyuan Wang, Mar 18 2020
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Jinyuan Wang, Mar 18 2020
STATUS
approved
