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!)
A213402 Expansion of exp( Sum_{n>=1} binomial(2*n^2-1, n^2) * x^n/n ). 2

%I #19 Mar 31 2017 03:53:14

%S 1,1,18,8121,75143314,12641135924840,36876057665515782388,

%T 1819829483946334379705083199,1496946629440335290077827171482478552,

%U 20328210229221517747154723779733726877327901902,4527425732825492268524878479039840102127714838348518156649

%N Expansion of exp( Sum_{n>=1} binomial(2*n^2-1, n^2) * x^n/n ).

%C Self-convolution square-root of A201556.

%C Compare to the g.f. C(x) = 1 + x*C(x)^2 of the Catalan numbers (A000108): C(x) = exp( Sum_{n>=1} binomial(2*n-1,n) * x^n/n ).

%H G. C. Greubel, <a href="/A213402/b213402.txt">Table of n, a(n) for n = 0..40</a>

%F a(n) = (1/n) * Sum_{k=1..n} C(2*k^2,k^2)/2 * a(n-k) for n>0 with a(0)=1.

%F a(n) ~ 2^(2*n^2-1) / (sqrt(Pi)*n^2). - _Vaclav Kotesovec_, Mar 06 2014

%e G.f.: A(x) = 1 + x + 18*x^2 + 8121*x^3 + 75143314*x^4 + 12641135924840*x^5 +...

%e where

%e log(A(x)) = x + 35*x^2/2 + 24310*x^3/3 + 300540195*x^4/4 +...+ C(2*n^2-1,n^2)*x^n/n +...

%t nmax = 10; b = ConstantArray[0, nmax+1]; b[[1]] = 1; Do[b[[n+1]] = 1/n*Sum[Binomial[2*k^2, k^2]/2*b[[n-k+1]], {k, 1, n}], {n, 1, nmax}]; b (* _Vaclav Kotesovec_, Mar 06 2014 *)

%o (PARI) {a(n)=polcoeff(exp(sum(m=1, n, binomial(2*m^2, m^2)/2*x^m/m)+x*O(x^n)), n)}

%o (PARI) {a(n)=if(n==0, 1, (1/n)*sum(k=1, n, binomial(2*k^2, k^2)/2*a(n-k)))}

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

%Y Cf. A201556, A200002.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Jun 10 2012

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 24 12:43 EDT 2024. Contains 371940 sequences. (Running on oeis4.)