OFFSET
0,6
COMMENTS
Number of partitions of n into parts 2, 3, 5, and 9. - Joerg Arndt, Aug 16 2013
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,1,1,0,0,0,-1,-1,1,1,-1,-1,0,0,0,1,1,0,-1).
MATHEMATICA
CoefficientList[Series[1 / ((1 - x^2) (1 - x^3) (1 - x^5) (1 - x^9)), {x, 0, 80}], x] (* Vincenzo Librandi, Aug 17 2013 *)
PROG
(PARI) a(n)=round((n\3+1)*(-2)^(n%3%2)/27+(n%5<2)*(-1)^(n%5)/5+(2*n+19)*(2*n^2+38*n+121)/6480) \\ Tani Akinari, Aug 15 2013
(PARI) Vec( 1/((1-x^2)*(1-x^3)*(1-x^5)*(1-x^9)) + O(x^66) ) \\ Joerg Arndt, Aug 16 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved