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

A296162
a(n) = [x^n] Product_{k>=1} ((1 - x^(3*k))/(1 - x^k))^n.
2
1, 1, 5, 19, 89, 406, 1913, 9073, 43505, 209971, 1019390, 4971781, 24343037, 119579006, 589050663, 2908727839, 14393759457, 71360342129, 354372852011, 1762416036422, 8776797353574, 43761058841638, 218431753457637, 1091385769314272, 5458068218285909, 27319061357620056
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Partition Function b_k
FORMULA
a(n) = [x^n] Product_{k>=1} (1 + x^k + x^(2*k))^n.
a(n) ~ c * d^n / sqrt(n), where d = 5.1069752682291604222843644516987970799026747758649349... and c = 0.271879273312907861082536692355942116774864... - Vaclav Kotesovec, May 13 2018
MATHEMATICA
Table[SeriesCoefficient[Product[((1 - x^(3 k))/(1 - x^k))^n, {k, 1, n}], {x, 0, n}], {n, 0, 25}]
Table[SeriesCoefficient[Product[(1 + x^k + x^(2 k))^n, {k, 1, n}], {x, 0, n}], {n, 0, 25}]
(* Calculation of constant d: *) With[{k = 3}, 1/r /. FindRoot[{s == QPochhammer[(r*s)^k] / QPochhammer[r*s], k*(-(s*QPochhammer[r*s]*(Log[1 - (r*s)^k] + QPolyGamma[0, 1, (r*s)^k]) / Log[(r*s)^k]) + (r*s)^k * Derivative[0, 1][QPochhammer][(r*s)^k, (r*s)^k]) == s*QPochhammer[r*s] + s^2*(-(QPochhammer[r*s]*(Log[1 - r*s] + QPolyGamma[0, 1, r*s]) / (s*Log[r*s])) + r*Derivative[0, 1][QPochhammer][r*s, r*s])}, {r, 1/5}, {s, 1}, WorkingPrecision -> 70]] (* Vaclav Kotesovec, Jan 17 2024 *)
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 06 2017
STATUS
approved