The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A246653 G.f.: Sum_{n>=0} x^n / (1-x^2)^(2*n+1) * [Sum_{k=0..n} C(n,k)^2 * x^k] * [Sum_{k=0..n} C(n,k)^2 * x^(2*k)]. 0

%I #9 Sep 02 2014 03:14:27

%S 1,1,3,9,25,87,287,993,3519,12525,45369,165519,608569,2253307,8386575,

%T 31370297,117834837,444258387,1680516731,6375706325,24253227159,

%U 92481509389,353417696625,1353280137975,5191349266275,19948136148837,76771074483837,295880290515411,1141860205058433,4412129801125275

%N G.f.: Sum_{n>=0} x^n / (1-x^2)^(2*n+1) * [Sum_{k=0..n} C(n,k)^2 * x^k] * [Sum_{k=0..n} C(n,k)^2 * x^(2*k)].

%F G.f.: Sum_{n>=0} x^n * Sum_{k=0..n} C(n,k)^2 * x^(n-k) * Sum_{j=0..k} C(k,j)^2 * x^j.

%F a(n) = Sum_{k=0..[n/2]} binomial(2*k, k) * binomial(n-k, k)^2.

%F Recurrence: n^2*(4*n-9)*a(n) = (8*n^3 - 26*n^2 + 18*n - 5)*a(n-1) + (28*n^3 - 119*n^2 + 162*n - 75)*a(n-2) + 2*(16*n^3 - 84*n^2 + 142*n - 75)*a(n-3) - 4*(2*n-5)^2*(4*n-5)*a(n-4). - _Vaclav Kotesovec_, Sep 02 2014

%F a(n) ~ 2^(2*n+1/2) / (Pi*n). - _Vaclav Kotesovec_, Sep 02 2014

%e G.f.: A(x) = 1 + x + 3*x^2 + 9*x^3 + 25*x^4 + 87*x^5 + 287*x^6 + 993*x^7 +...

%e where the g.f. is given by the binomial series:

%e A(x) = 1/(1-x^2) + x/(1-x^2)^3 * (1 + x) * (1 + x^2)

%e + x^2/(1-x^2)^5 * (1 + 2^2*x + x^2) * (1 + 2^2*x^2 + x^4)

%e + x^3/(1-x^2)^7 * (1 + 3^2*x + 3^2*x^2 + x^3) * (1 + 3^2*x^2 + 3^2*x^4 + x^6)

%e + x^4/(1-x^2)^9 * (1 + 4^2*x + 6^2*x^2 + 4^2*x^3 + x^4) * (1 + 4^2*x^2 + 6^2*x^4 + 4^2*x^6 + x^8)

%e + x^5/(1-x^2)^11 * (1 + 5^2*x + 10^2*x^2 + 10^2*x^3 + 5^2*x^4 + x^5) * (1 + 5^2*x^2 + 10^2*x^4 + 10^2*x^6 + 5^2*x^8 + x^10) +...

%t Table[Sum[Binomial[2*k, k] * Binomial[n-k, k]^2,{k,0,Floor[n/2]}],{n,0,20}] (* _Vaclav Kotesovec_, Sep 02 2014 *)

%o (PARI) /* By definition: */

%o {a(n)=local(A=1); A=sum(m=0, n, x^m/(1-x^2)^(2*m+1) * sum(k=0, m, binomial(m, k)^2 * x^k) * sum(k=0, m, binomial(m, k)^2 * x^(2*k)) +x*O(x^n)); polcoeff(A, n)}

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

%o (PARI) /* By a binomial identity: */

%o {a(n)=polcoeff(sum(m=0, n, x^m*sum(k=0, m, binomial(m, k)^2 * x^(m-k) * sum(j=0, k, binomial(k, j)^2 * x^j )+x*O(x^n))), n)}

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

%o (PARI) /* From a formula for a(n): */

%o {a(n)=sum(k=0, n\2, binomial(2*k, k)*binomial(n-k, k)^2)}

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

%Y Cf. A246563.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Aug 31 2014

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 May 20 19:00 EDT 2024. Contains 372720 sequences. (Running on oeis4.)