login
A393876
O.g.f. A(x) satisfies: [x^n] exp( n^7*x - n^6*A(x) ) = 0 for n >= 1.
11
1, 32, 661932, 221380591616, 492195926802500000, 4671419955175042830752256, 143797996122209842658817017521712, 11888912865765909381357046911557911445504, 2301274641682112844580003702209146076355275405792, 939617389763839934314548547290330400364213388157280000000
OFFSET
1,2
COMMENTS
In general, if p > q >= 1 and o.g.f. A(x) satisfies: [x^n] exp(n^p*x - n^q*A(x)) = 0, then a(n) ~ sqrt(1-c) * p^(p*n - q - s/p) * n^((p-1)*n - q - 1/2) / (sqrt(2*Pi) * (p-c)^((p-1)*n - q) * c^(n - s/p) * exp((p-1)*n)), where c = -LambertW(-p*exp(-p)) and s = 0 if p > q+1 and s = 1 if p = q+1. - Vaclav Kotesovec, May 18 2026
LINKS
FORMULA
a(n) ~ sqrt(1-c) * 7^(7*n - 43/7) * n^(6*n - 13/2) / (sqrt(2*Pi) * (7-c)^(6*n - 6) * c^(n - 1/7) * exp(6*n)), where c = -LambertW(-7*exp(-7)). - Vaclav Kotesovec, May 18 2026
EXAMPLE
O.g.f.: A(x) = x + 32*x^2 + 661932*x^3 + 221380591616*x^4 + 492195926802500000*x^5 + 4671419955175042830752256*x^6 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp( n^7*x - n^6*A(x) ) begins
n = 1: [1, 0, -64, -3971592, ...];
n = 2: [1, 64, 0, -254706176, ...];
n = 3: [1, 1458, 2079108, 0, ...];
n = 4: [1, 12288, 150732800, 1829494554624, 0, ...];
n = 5: [1, 62500, 3905250000, 243891068875000, 15136822809394000000, 0, ...]; ...
in which a diagonal, the coefficient of x^n in row n, is all zeros.
RELATED SERIES.
exp(A(x)) = 1 + x + 65*x^2/2! + 3971785*x^3/3! + 5313150097825*x^4/4! + 59063537784552590801*x^5/5! + 3363422722112436192550045921*x^6/6! + ...
where [x^n] exp(n^7*x) / exp(A(x))^(n^6) = 0 for n >= 1.
PROG
(PARI) {a(n, p=7, q=6) = my(A=[0], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m^p*x - m^q*Ser(A)) )[m+1]/(m^q) ); polcoef( Ser(A), n)}
for(n=1, 15, print1(a(n, 7, 6), ", "))
CROSSREFS
Below, sequences with the parameters (p,q) indicated have an o.g.f. F(x) satisfying [x^n] exp( n^p*x - n^q*F(x) ) = 0 for n >= 1.
Cf. A393871 (7,1), A393872 (7,2), A393873 (7,3), A393874 (7,4), A393875 (7,5).
Cf. A393886 (8,6).
Cf. A317344 (2,1), A317346 (3,2), A319943 (4,3), A393854 (5,4), A393865 (6,5), A393887 (8,7).
Sequence in context: A286179 A017549 A217027 * A087927 A357566 A265217
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 02 2026
STATUS
approved