OFFSET
1,1
LINKS
Paul D. Hanna, Table of n, a(n) for n = 1..301
FORMULA
a(n) ~ sqrt(1-w) * 3^(3*n - 2/3) * n^(2*n - 3/2) / (sqrt(2*Pi) * exp(2*n) * (3-w)^(2*n-1) * w^(n + 1/3)), where w = -A226750 = -LambertW(-3*exp(-3)). - Vaclav Kotesovec, Mar 02 2026
EXAMPLE
O.g.f.: A(x) = 2*x + 16*x^2 + 1020*x^3 + 165536*x^4 + 49320160*x^5 + 23135212080*x^6 + 15630527512432*x^7 + 14347969660399360*x^8 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp( n^2*(n+1)*x - n*A(x) ) begin
n = 1: [1, 0, -32, -6120, -3969792, ...];
n = 2: [1, 8, 0, -13264, -8345600, ...];
n = 3: [1, 30, 804, 0, -13802544, ...];
n = 4: [1, 72, 5056, 321120, 0, ...];
n = 5: [1, 140, 19440, 2646200, 328420480, 0, ...];
...
in which a diagonal, the coefficient of x^n in row n, equals all zeros.
RELATED SERIES.
exp(A(x)) = 1 + 2*x + 36*x^2/2! + 6320*x^3/3! + 4025680*x^4/4! + 5960384352*x^5/5! + 16730918782144*x^6/6! + ...
where [x^n] exp(n^2*(n+1)*x) / exp(A(x))^n = 0 for n >= 1.
PROG
(PARI) {a(n, k=1) = my(A=[0], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m^2*(m+k)*x - m*Ser(A)) )[m+1]/m ); polcoef( Ser(A), n)}
for(n=1, 15, print1(a(n, 1), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 01 2026
STATUS
approved
