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

A294356
E.g.f.: Product_{k>0} (1+x^k)^(-1/k).
6
1, -1, 1, -5, 23, -119, 619, -4759, 48145, -476657, 4249961, -48286061, 691331431, -9132207655, 117900772963, -2025161870159, 37607411624609, -628236985455329, 10768798391659345, -215626810984559317, 4751529623277906871, -105427459848063440471
OFFSET
0,4
MATHEMATICA
nmax = 20; CoefficientList[Series[Product[1/(1+x^k)^(1/k), {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Oct 29 2017 *)
PROG
(PARI) N=66; x='x+O('x^N); Vec(serlaplace(prod(k=1, N, 1/(1+x^k)^(1/k))))
CROSSREFS
KEYWORD
sign
AUTHOR
Seiichi Manyama, Oct 29 2017
STATUS
approved