OFFSET
0,3
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..100
FORMULA
a(n) ~ sqrt(1-c) * 6^(6*n) * n^(5*n - 1/2) / (sqrt(2*Pi) * c^n * (6-c)^(5*n) * exp(5*n)), where c = -LambertW(-6*exp(-6)). - Vaclav Kotesovec, May 18 2026
EXAMPLE
O.g.f.: A(x) = 1 + x + 1985*x^2 + 62861994*x^3 + 11442690973075*x^4 + 7570836550478960487*x^5 + 13956629370284243750857868*x^6 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp(n^6*x)/A(x) begins
n = 1: [1, 0, -3969, -377160056, ...];
n = 2: [1, 63, 0, -377660150, ...];
n = 3: [1, 728, 526015, 0, ...];
n = 4: [1, 4095, 16765056, 68243238154, 0, ...];
n = 5: [1, 15624, 244105407, 3813401695600, 59285380255397541, 0, ...];
...
in which a diagonal, the coefficient of x^n in row n, is all zeros.
PROG
(PARI) {a(n, k=6) = 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, 6), ", "))
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
