OFFSET
0,3
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..100
FORMULA
a(n) ~ sqrt(1-c) * 7^(7*n) * n^(6*n - 1/2) / (sqrt(2*Pi) * c^n * (7-c)^(6*n) * exp(6*n)), where c = -LambertW(-7*exp(-7)). - Vaclav Kotesovec, May 18 2026
EXAMPLE
O.g.f.: A(x) = 1 + x + 8065*x^2 + 1723380877*x^3 + 2972352315820441*x^4 + 24013530904194819396970*x^5 + 661513372249008158305805082187*x^6 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp(n^7*x)/A(x) begins
n = 1: [1, 0, -16129, -10340236874, ...];
n = 2: [1, 127, 0, -10344333640, ...];
n = 3: [1, 2186, 4762467, 0, ...];
n = 4: [1, 16383, 268386560, 4386108292792, 0, ...];
n = 5: [1, 78124, 6103343247, 476804727467762, 37175837330786900381, 0, ...];
...
in which a diagonal, the coefficient of x^n in row n, is all zeros.
PROG
(PARI) {a(n, k=7) = my(A=[1]); for(i=1, n, A=concat(A, 0); m=#A; A[m] = Vec( exp(x*(m-1)^k +x*O(x^m)) / Ser(A) )[m] ); A[n+1]}
for(n=0, 15, print1( a(n, 7), ", "))
CROSSREFS
Sequences below with the given parameter p have an o.g.f. F(x) satisfying [x^n] exp( n^p*x ) / F(x) = 0 for n >= 1.
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 02 2026
STATUS
approved
