OFFSET
0,5
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..10000
FORMULA
G.f.: (Product_{k>0} 1/(1-q^k)) * B(q), where B(q) is the g.f. of A343941.
a(n) ~ n^(1/2) * exp(Pi*sqrt(2*n/3)) / (2^(3/2)*Pi^3). - Vaclav Kotesovec, May 20 2026
MATHEMATICA
nmax = 50; With[{k = 2}, colk = CoefficientList[Series[Sum[(-1)^(i-1) * x^(i*(i-1)/2 + k)/Product[(1 - x^j), {j, 1, 2*k - i}], {i, 1, 2*k} ], {x, 0, nmax}], x]]; Table[Sum[colk[[k+1]]*PartitionsP[n-k], {k, 0, n}], {n, 0, nmax}] (* Vaclav Kotesovec, May 20 2026 *)
PROG
(PARI) my(N=50, q='q+O('q^N)); concat([0, 0], Vec(1/prod(k=1, N, 1-q^k)*sum(j=1, 4, (-1)^(j-1)*q^(j*(j-1)/2+2)/prod(k=1, 4-j, 1-q^k))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 17 2026
STATUS
approved
