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

%I #21 Oct 24 2020 03:48:09

%S 1,1,3,31,697,25761,1371691,97677343,8869533681,993709302337,

%T 134086553693011,21392941696576671,3977310371182762153,

%U 851537642070562468321,207892899850805427254907,57394298500033495294907551,17789220343418322663802383841,6151146653207427022767433596033,2359535664677835451305256629862051,999033160522078788619730346474821407

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

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

%H Paul D. Hanna, <a href="/A300735/b300735.txt">Table of n, a(n) for n = 0..200</a>

%F E.g.f. A(x) satisfies: A(x) = exp( x * (A(x) - x*A'(x)) / (A(x) - 2*x*A'(x)) ).

%F a(n) ~ c * n!^2 * n^3, where c = 0.008789136598... - _Vaclav Kotesovec_, Oct 24 2020

%e E.g.f.: A(x) = 1 + x + 3*x^2/2! + 31*x^3/3! + 697*x^4/4! + 25761*x^5/5! + 1371691*x^6/6! + 97677343*x^7/7! + 8869533681*x^8/8! + 993709302337*x^9/9! + 134086553693011*x^10/10! + ...

%e such that [x^n] A(x)^(2*n) = (n+1) * [x^(n-1)] A(x)^(2*n) for n>=1.

%e RELATED SERIES.

%e A(x)^2 = 1 + 2*x + 8*x^2/2! + 80*x^3/3! + 1696*x^4/4! + 60352*x^5/5! + 3134464*x^6/6! + 219316736*x^7/7! + 19655797760*x^8/8! + ...

%e ILLUSTRATION OF DEFINITION.

%e The table of coefficients of x^k in A(x)^(2*n) begin:

%e n=1: [(1), (2), 4, 40/3, 212/3, 7544/15, 195904/45, 13707296/315, ...];

%e n=2: [1, (4), (12), 128/3, 632/3, 6976/5, 515776/45, 34760896/315, ...];

%e n=3: [1, 6, (24), (96), 468, 14664/5, 114384/5, 7407552/35, ...];

%e n=4: [1, 8, 40, (544/3), (2720/3), 82496/15, 1843264/45, 22923136/63, ...];

%e n=5: [1, 10, 60, 920/3, (4820/3), (9640), 622880/9, 37242080/63, ...];

%e n=6: [1, 12, 84, 480, 2664, (80448/5), (563136/5), 32495424/35, ...];

%e n=7: [1, 14, 112, 2128/3, 12572/3, 387128/15, (8018416/45), (64147328/45), ...]; ...

%e in which the coefficients in parenthesis are related by

%e 2 = 2*(1); 12 = 3*(4); 96 = 4*(24); 2720/3 = 5*(544/3); 9640 = 6*(4820/3); 563136/5 = 7*(80448/5); 64147328/45 = 8*(8018416/45); ...

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

%e LOGARITHMIC PROPERTY.

%e The logarithm of the e.g.f. is an integer power series in x satisfying

%e log(A(x)) = x * (1 - x*A'(x)/A(x)) / (1 - 2*x*A'(x)/A(x));

%e explicitly,

%e log(A(x)) = x + x^2 + 4*x^3 + 24*x^4 + 184*x^5 + 1672*x^6 + 17296*x^7 + 198800*x^8 + 2499200*x^9 + 33992000*x^10 + 496281344*x^11 + 7731823616*x^12 + ...

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

%o for(n=0, 20, print1(a(n), ", "))

%o (PARI) {a(n) = my(A=1); for(i=1, n, A = exp( x*(A-x*A')/(A-2*x*A' +x*O(x^n)) ) ); n!*polcoeff(A, n)}

%o for(n=0, 25, print1(a(n), ", "))

%Y Cf. A300736, A182962, A300986, A300988, A300990, A300992.

%Y Cf. A300870, A300590, A296170.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Mar 17 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 23 12:44 EDT 2024. Contains 371913 sequences. (Running on oeis4.)