login
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