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) * n^(2*n - 3/2) / (sqrt(2*Pi) * exp(2*n) * (3-w)^(2*n-1) * w^(n+1)), where w = -A226750 = -LambertW(-3*exp(-3)). - Vaclav Kotesovec, Mar 02 2026
EXAMPLE
O.g.f.: A(x) = 4*x + 36*x^2 + 2604*x^3 + 471456*x^4 + 153941040*x^5 + 77949764208*x^6 + 56150061828336*x^7 + 54404955135078912*x^8 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp( n^2*(n+3)*x - n*A(x) ) begin
n = 1: [1, 0, -72, -15624, -11299392, ...];
n = 2: [1, 12, 0, -34704, -24171264, ...];
n = 3: [1, 42, 1548, 0, -40853808, ...];
n = 4: [1, 96, 8928, 739296, 0, ...];
n = 5: [1, 180, 32040, 5559480, 867343680, 0, ...];
...
in which a diagonal, the coefficient of x^n in row n, equals all zeros.
RELATED SERIES.
exp(A(x)) = 1 + 4*x + 88*x^2/2! + 16552*x^3/3!+ 11587648*x^4/4! + 18713330944*x^5/5! + 56584856838016*x^6/6! + ...
where [x^n] exp(n^2*(n+3)*x) / exp(A(x))^n = 0 for n >= 1.
PROG
(PARI) {a(n, k=3) = 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, 3), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 01 2026
STATUS
approved
