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!)
A300874 O.g.f. A(x) satisfies: [x^n] exp( n*(n+1) * A(x) ) = 2*n * [x^(n-1)] exp( n*(n+1) * A(x) ) for n>=1. 3

%I #18 Mar 14 2018 12:25:25

%S 1,1,6,78,1560,41484,1361640,52824144,2355612192,118455668960,

%T 6624336466880,407637626194080,27374154691010816,1992569727194556608,

%U 156335075280459423360,13158244845212096286720,1183162080050737698802176,113244610738097834450007552,11500380596282466998941623296,1235555832300741998445513374720,140061215510759508434434106953728

%N O.g.f. A(x) satisfies: [x^n] exp( n*(n+1) * A(x) ) = 2*n * [x^(n-1)] exp( n*(n+1) * A(x) ) for n>=1.

%C Compare to: [x^n] exp( n*(n+1) * x ) = (n+1) * [x^(n-1)] exp( n*(n+1) * x ) for n>=1.

%C O.g.f. equals the logarithm of the e.g.f. of A300873.

%C It is conjectured that this sequence consists entirely of integers.

%H Paul D. Hanna, <a href="/A300874/b300874.txt">Table of n, a(n) for n = 1..300</a>

%F a(n) ~ c * d^n * n! / n^3, where d = -4/(LambertW(-2*exp(-2))*(2+LambertW(-2*exp(-2)))) = 6.17655460948348035823168... and c = 0.75891265... - _Vaclav Kotesovec_, Mar 14 2018

%e O.g.f.: A(x) = x + x^2 + 6*x^3 + 78*x^4 + 1560*x^5 + 41484*x^6 + 1361640*x^7 + 52824144*x^8 + 2355612192*x^9 + 118455668960*x^10 + ...

%e where

%e exp(A(x)) = 1 + x + 3*x^2/2! + 43*x^3/3! + 2041*x^4/4! + 197721*x^5/5! + 31094251*x^6/6! + 7086479443*x^7/7! + 2187876597873*x^8/8! + 874871971357681*x^9/9! + ... + A300873(n)*x^n/n! + ...

%e ILLUSTRATION OF DEFINITION.

%e The table of coefficients of x^k in exp( n*(n+1) * A(x) ) begins:

%e n=1: [(1), (2), 4, 52/3, 560/3, 52304/15, 4048864/45, 914958416/315, ...];

%e n=2: [1, (6), (24), 108, 864, 67104/5, 1601424/5, 348254352/35, ...];

%e n=3: [1, 12, (84), (504), 3600, 211968/5, 4273776/5, 860107104/35, ...];

%e n=4: [1, 20, 220, (5560/3), (44480/3), 438400/3, 20480720/9, 3534944800/63, ...];

%e n=5: [1, 30, 480, 5580, (55440), (554400), 6991920, 947466000/7, ...];

%e n=6: [1, 42, 924, 14364, 181440, (10403568/5), (124842816/5), 1922103792/5, ...];

%e n=7: [1, 56, 1624, 98224/3, 1566992/3, 107909312/15, (4208547616/45), (58919666624/45), ...]; ...

%e in which the coefficients in parenthesis are related by

%e 2 = 2*1*(1); 24 = 2*2*(6); 504 = 2*3*(84); 44480/3 = 2*4*(5560/3); 554400 = 2*5*(55440); 124842816/5 = 2*6*(10403568/5); ...

%e illustrating: [x^n] exp( n*(n+1) * A(x) ) = 2*n * [x^(n-1)] exp( n*(n+1) * A(x) ).

%o (PARI) {a(n) = my(A=[1]); for(i=1, n+1, A=concat(A, 0); V=Vec(Ser(A)^((#A-1)*(#A))); A[#A] = (2*(#A-1)*V[#A-1] - V[#A])/(#A-1)/(#A) ); polcoeff( log(Ser(A)), n)}

%o for(n=1, 30, print1(a(n), ", "))

%Y Cf. A300873, A300871, A300591, A296171.

%K nonn

%O 1,3

%A _Paul D. Hanna_, Mar 14 2018

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.)