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

A303906
Expansion of Product_{k>=2} 1/(1 - x^(k*(k+1)/2)).
2
1, 0, 0, 1, 0, 0, 2, 0, 0, 2, 1, 0, 3, 1, 0, 4, 2, 0, 5, 2, 1, 7, 3, 1, 8, 4, 2, 10, 6, 2, 13, 8, 3, 15, 10, 4, 20, 12, 6, 22, 16, 8, 28, 19, 10, 33, 25, 12, 40, 29, 16, 48, 36, 19, 55, 44, 26, 65, 53, 30, 76, 64, 38, 88, 75, 46, 106, 88, 56, 119, 105, 68, 141, 122, 80, 160
OFFSET
0,7
COMMENTS
First differences of A007294.
Number of partitions of n into triangular numbers > 1.
FORMULA
G.f.: 1 + Sum_{j>=2} x^(j*(j+1)/2)/Product_{k=2..j} (1 - x^(k*(k+1)/2)).
a(n) ~ exp(3 * Pi^(1/3) * Zeta(3/2)^(2/3) * n^(1/3) / 2) * Zeta(3/2)^(5/3) / (2^(9/2) * sqrt(3) * Pi^(2/3) * n^(13/6)). - Vaclav Kotesovec, May 04 2018
MATHEMATICA
nmax = 75; CoefficientList[Series[Product[1/(1 - x^(k (k + 1)/2)), {k, 2, nmax}], {x, 0, nmax}], x]
nmax = 75; CoefficientList[Series[1 + Sum[x^(j (j + 1)/2)/Product[(1 - x^(k (k + 1)/2)), {k, 2, j}], {j, 2, nmax}], {x, 0, nmax}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 02 2018
STATUS
approved