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

A307500
Expansion of Product_{k>=1} 1/(1 - (x*(1 - x))^k).
3
1, 1, 1, -1, -2, -4, 3, -1, 17, -16, 21, -57, 67, -130, 305, -536, 995, -1726, 2652, -4286, 7320, -13043, 24458, -45405, 81415, -141724, 239755, -400603, 676872, -1171076, 2072334, -3695550, 6519951, -11279015, 19188230, -32462795, 55334284, -95718737, 167673672, -294894076
OFFSET
0,5
LINKS
FORMULA
G.f.: exp(Sum_{k>=1} sigma(k)*(x*(1 - x))^k/k).
a(n) = Sum_{k=0..n} (-1)^(n-k)*binomial(k,n-k)*A000041(k).
MATHEMATICA
nmax = 39; CoefficientList[Series[Product[1/(1 - (x (1 - x))^k), {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 39; CoefficientList[Series[Exp[Sum[DivisorSigma[1, k] (x (1 - x))^k/k, {k, 1, nmax}]], {x, 0, nmax}], x]
Table[Sum[(-1)^(n - k) Binomial[k, n - k] PartitionsP[k], {k, 0, n}], {n, 0, 39}]
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Apr 11 2019
STATUS
approved