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”).

A327718
Expansion of Product_{k>=1} (1 + x^k/(1 + x^(2*k)/(1 + x^(3*k)))).
5
1, 1, 1, 1, 2, 3, 3, 3, 4, 6, 8, 9, 9, 11, 15, 20, 21, 20, 24, 36, 48, 46, 41, 52, 80, 100, 88, 74, 103, 170, 207, 166, 124, 198, 354, 409, 269, 162, 369, 745, 802, 382, 136, 706, 1585, 1515, 328, -178, 1422, 3481, 2822, -387, -1283, 3144, 7816, 4951, -3451, -4472, 7694, 18055
OFFSET
0,5
LINKS
MATHEMATICA
nmax = 60; CoefficientList[Series[Product[(1 - x^(5*k)) / ((1 - x^k)*(1 + x^(2*k) + x^(3*k))), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Sep 23 2019 *)
PROG
(PARI) N=66; x='x+O('x^N); Vec(prod(k=1, N, 1+x^k/(1+x^(2*k)/(1+x^(3*k)))))
CROSSREFS
Convolution inverse of A327686.
Sequence in context: A327719 A327716 A327720 * A035581 A171628 A205566
KEYWORD
sign,look
AUTHOR
Seiichi Manyama, Sep 23 2019
STATUS
approved