The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A008678 Expansion of 1/((1-x^3)*(1-x^5)*(1-x^7)*(1-x^9)). 1
1, 0, 0, 1, 0, 1, 1, 1, 1, 2, 2, 1, 3, 2, 3, 4, 3, 4, 5, 5, 5, 7, 6, 7, 9, 8, 9, 11, 11, 11, 14, 13, 14, 17, 16, 18, 20, 20, 21, 24, 24, 25, 29, 28, 30, 34, 33, 35, 39, 39, 41, 45, 45, 47, 52, 52, 54, 59, 59, 62, 67, 67 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,10
LINKS
Index entries for linear recurrences with constant coefficients, signature (0, 0, 1, 0, 1, 0, 1, -1, 1, -1, 0, -2, 0, -1, 1, -1, 1, 0, 1, 0, 1, 0, 0, -1).
MAPLE
seq(coeff(series(1/mul(1-x^(2*j+1), j=1..4), x, n+1), x, n), n = 0..70); # G. C. Greubel, Sep 09 2019
MATHEMATICA
CoefficientList[Series[1/((1-x^3)(1-x^5)(1-x^7)(1-x^9)), {x, 0, 70}], x] (* Harvey P. Dale, Sep 30 2011 *)
PROG
(PARI) my(x='x+O('x^70)); Vec(1/prod(j=1, 4, 1-x^(2*j+1))) \\ G. C. Greubel, Sep 09 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 70); Coefficients(R!( 1/&*[1-x^(2*j+1): j in [1..4]] )); // G. C. Greubel, Sep 09 2019
(Sage)
def A008678_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 1/prod(1-x^(2*j+1) for j in (1..4)) ).list()
A008678_list(70) # G. C. Greubel, Sep 09 2019
CROSSREFS
Sequence in context: A319444 A071285 A289438 * A159803 A308934 A058741
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 3 10:43 EDT 2024. Contains 373060 sequences. (Running on oeis4.)