login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A319942 O.g.f. A(x) satisfies: [x^n] exp( n^4*x - n^2*A(x) ) = 0 for n >= 1. 4
1, 18, 5616, 6776352, 20200266000, 119799079486272, 1242032508354758400, 20634722510624457007104, 515736410631216295520236032, 18480208067078637967802351884800, 913939154183946975187574927409795072, 60487962958244860971401604975128195088384 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
It is remarkable that this sequence should consist entirely of integers.
LINKS
FORMULA
a(n) ~ sqrt(1-c) * 2^(8*n - 9/2) * n^(3*n - 5/2) / (sqrt(Pi) * c^n * (4-c)^(3*n - 2) * exp(3*n)), where c = -LambertW(-4*exp(-4)) = 0.07930960512711365643910864738... - Vaclav Kotesovec, Oct 13 2020
EXAMPLE
G.f.: A(x) = x + 18*x^2 + 5616*x^3 + 6776352*x^4 + 20200266000*x^5 + 119799079486272*x^6 + 1242032508354758400*x^7 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp( n^4*x - n^2*A(x) ) begins:
n=1: [1, 0, -36, -33696, -162628560, -2424019789440, ...];
n=2: [1, 12, 0, -138240, -657040896, -9735157974528, ...];
n=3: [1, 72, 4860, 0, -1533920976, -22357116073728, ...];
n=4: [1, 240, 57024, 12870144, 0, -41496660080640, ...];
n=5: [1, 600, 359100, 213537600, 121570858800, 0, ...];
n=6: [1, 1260, 1586304, 1994264064, 2496165050880, 3006510865205760, 0, ...]; ...
in which the coefficient of x^n in row n forms a diagonal of zeros.
RELATED SERIES.
exp(A(x)) = 1 + x + 37*x^2/2! + 33805*x^3/3! + 162771337*x^4/4! + 2424857569561*x^5/5! + 86269983111064621*x^6/6! + 6260449705448367386917*x^7/7! + ...
PROG
(PARI) {a(n) = my(A=[1], m); for(i=1, n+1, m=#A; A=concat(A, 0); A[m+1] = Vec( exp(m^4*x +x*O(x^#A)) / Ser(A)^(m^2) )[m+1]/m^2 ); polcoeff( log(Ser(A)), n)}
for(n=1, 15, print1(a(n), ", "))
CROSSREFS
Sequence in context: A036214 A188799 A058976 * A013723 A366518 A232595
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 02 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 02:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)