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

A352402
Expansion of Product_{k>=1} 1 / (1 + 2^(k-1)*x^k).
1
1, -1, -1, -3, -1, -7, -1, -15, 31, -63, 159, -95, 671, -287, 3231, -2975, 15519, -7839, 44191, -34975, 224415, -291999, 863391, -990367, 2927775, -4902047, 12561567, -27225247, 56470687, -102640799, 152153247, -422620319, 877243551, -2278272159, 3357125791
OFFSET
0,4
FORMULA
a(n) = Sum_{k=0..n} (-1)^k * p(n,k) * 2^(n-k), where p(n,k) is the number of partitions of n into k parts.
MATHEMATICA
nmax = 34; CoefficientList[Series[Product[1/(1 + 2^(k - 1) x^k), {k, 1, nmax}], {x, 0, nmax}], x]
Table[Sum[(-1)^k Length[IntegerPartitions[n, {k}]] 2^(n - k), {k, 0, n}], {n, 0, 34}]
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jun 08 2022
STATUS
approved