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

A299712
Coefficients in expansion of (E_14/E_2^14)^(1/4).
3
1, 78, -44928, -14386944, -5323508814, -1996794824544, -833028042023424, -358702721913389568, -160514702770156497360, -73334654476723097306706, -34151846554093744054455552, -16125009656471947012310740224
OFFSET
0,2
LINKS
FORMULA
a(n) ~ -2^(3/4) * sqrt(3) * Pi^(11/2) * exp(2*Pi*n) / (864 * Gamma(3/4)^9 * n^(5/4)). - Vaclav Kotesovec, Jun 03 2018
MATHEMATICA
terms = 12;
E2[x_] = 1 - 24*Sum[k*x^k/(1 - x^k), {k, 1, terms}];
E4[x_] = 1 + 240*Sum[k^3*x^k/(1 - x^k), {k, 1, terms}];
E10[x_] = 1 - 264*Sum[k^9*x^k/(1 - x^k), {k, 1, terms}];
E14[x_] = E4[x]*E10[x];
(E14[x]/E2[x]^14)^(1/4) + O[x]^terms // CoefficientList[#, x]& (* Jean-François Alcover, Feb 26 2018 *)
CROSSREFS
KEYWORD
sign
AUTHOR
Seiichi Manyama, Feb 17 2018
STATUS
approved