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!)
A337457 O.g.f. A(x) satisfies: [x^n] exp( n*(n-1) * x/A(x) ) = 0 for n > 0. 4
1, 1, 1, 7, 93, 1859, 49357, 1629227, 64149805, 2929386667, 152027131261, 8830653890299, 567303319553421, 39924294419453931, 3053895154472856285, 252244319795920299419, 22373037117819632459821, 2120745476831765696381387, 213946972632171665440620925, 22887117259538879173402222075 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
It is remarkable that this sequence consists entirely of integers.
LINKS
FORMULA
Given o.g.f. A(x), define B(x) = A(x*B(x)), then B(x) is the o.g.f. of A337458 and satisfies [x^n] exp( n*(n+1)*x ) / B(x)^(n+1) = 0 for n>0.
a(n) ~ c * d^n * n! / n^2, where d = -4 / (LambertW(-2*exp(-2)) * (2 + LambertW(-2*exp(-2)))) = 6.17655460948348035823168... and c = 0.083103344220475784... - Vaclav Kotesovec, Aug 31 2020
EXAMPLE
O.g.f.: A(x) = 1 + x + x^2 + 7*x^3 + 93*x^4 + 1859*x^5 + 49357*x^6 + 1629227*x^7 + 64149805*x^8 + 2929386667*x^9 + 152027131261*x^10 + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients of x^k/k! in exp( n*(n-1)*x/A(x) ) begins:
n=0: [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...];
n=1: [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...];
n=2: [1, 2, 0, -16, -320, -21888, -2648576, -494325760, ...];
n=3: [1, 6, 24, 0, -1728, -88704, -9621504, -1715198976, ...];
n=4: [1, 12, 120, 864, 0, -281088, -26873856, -4328017920, ...];
n=5: [1, 20, 360, 5600, 65920, 0, -66944000, -10207436800, ...];
n=6: [1, 30, 840, 21600, 492480, 8784000, 0, -22098355200, ...];
n=7: [1, 42, 1680, 63504, 2237760, 71229312, 1814690304, 0, ...]; ...
in which the main diagonal is all zeros after the initial term, illustrating that [x^n] exp( n*(n-1)*x/A(x) ) = 0 for n>0.
RELATED SERIES.
Define B(x) = A(x*B(x)), which begins
B(x) = 1 + x + 2*x^2 + 11*x^3 + 130*x^4 + 2450*x^5 + 63012*x^6 + 2040779*x^7 + 79377914*x^8 + 3594766694*x^9 + ... + A337458(n)*x^n + ...
then the table of coefficients of x^k/k! in exp(n*(n+1)*x) / B(x)^(n+1) begins:
n=0: [1, -1, -2, -48, -2616, -262080, -41718240, -9630270720, ...];
n=1: [1, 0, -6, -112, -5592, -547968, -86345120, -19809990912, ...];
n=2: [1, 3, 0, -222, -10728, -958824, -144971712, -32519314080, ...];
n=3: [1, 8, 52, 0, -18648, -1693248, -236690784, -50727983616, ...];
n=4: [1, 15, 210, 2420, 0, -2739720, -399251600, -80125144800, ...];
n=5: [1, 24, 558, 12192, 221184, 0, -616918320, -131299591680, ...];
n=6: [1, 35, 1204, 40278, 1272768, 33597312, 0, -196436730672, ...];
n=7: [1, 48, 2280, 106688, 4869552, 210771456, 7654459648, 0, ...]; ...
in which the main diagonal is all zeros after the initial term, illustrating that [x^n] exp( n*(n+1)*x ) / B(x)^(n+1) = 0 for n>0.
Also note that B(x) = (1/x)*Series_Reversion( x/A(x) ) and A(x) = B(x/A(x)).
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0); m=#A; A[m] = Vec( exp(m*(m-1)*x/Ser(A) ))[m+1]/(m*(m-1)) ); A[n+1]}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Cf. A337458.
Sequence in context: A089915 A370939 A318697 * A346463 A346464 A197484
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 28 2020
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 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)