[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A025895
Expansion of 1/((1-x^5)*(1-x^10)*(1-x^12)).
3
1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0, 2, 0, 1, 0, 0, 3, 0, 2, 0, 1, 3, 0, 2, 0, 1, 4, 0, 3, 0, 2, 4, 1, 3, 0, 2, 5, 1, 4, 0, 3, 5, 2, 4, 1, 3, 6, 2, 5, 1, 4, 6, 3, 5, 2, 4, 8, 3, 6, 2, 5, 8, 4, 6, 3, 5, 10, 4, 8, 3, 6, 10, 5, 8, 4, 6
OFFSET
0,11
COMMENTS
a(n) is the number of partitions of n into parts 5, 10, and 12. - Joerg Arndt, Jan 17 2024
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,1,0,0,0,0,1,0,1,0,0,-1,0,-1,0,0,0,0,-1,0,0,0,0,1).
MATHEMATICA
CoefficientList[Series[1/((1-x^5)(1-x^10)(1-x^12)), {x, 0, 100}], x] (* Harvey P. Dale, Mar 30 2011 *)
PROG
(Magma) R<x>:=PowerSeriesRing(Integers(), 120); Coefficients(R!( 1/((1-x^5)*(1-x^10)*(1-x^12)) )); // G. C. Greubel, Jan 17 2024
(SageMath)
def A025895_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 1/((1-x^5)*(1-x^10)*(1-x^12)) ).list()
A025895_list(120) # G. C. Greubel, Jan 17 2024
CROSSREFS
KEYWORD
nonn
STATUS
approved