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!)
A134772 Let f(m, n) = 2^(-m) * Sum_{j=0..n} (-1)^j*m!*n!*(2*m-2*j)!/(j!*(m-j)! *(n-j)!*6^(n-j)) then a(n) = f(2n,n). 5

%I #10 Oct 21 2023 04:21:57

%S 1,0,28,14400,27165600,134289792000,1445549490000000,

%T 29865588836219136000,1081114481157129619200000,

%U 64007711015400701105356800000,5873237165016878140678626432000000,799901135455942846519287494400000000000,156064894765355001368149078831725782016000000

%N Let f(m, n) = 2^(-m) * Sum_{j=0..n} (-1)^j*m!*n!*(2*m-2*j)!/(j!*(m-j)! *(n-j)!*6^(n-j)) then a(n) = f(2n,n).

%H G. C. Greubel, <a href="/A134772/b134772.txt">Table of n, a(n) for n = 0..128</a>

%F a(n) = 4^(-n) * Sum_{j=0..n} (-1)^j*(2*n)!*n!*(4*n-2*j)!/(j!*(2*n-j)! *(n-j)!*6^(n-j)).

%F From _G. C. Greubel_, Oct 12 2023: (Start)

%F a(n) = ((4*n)!/(24)^n) * Sum_{j=0..n} b(n,j)*b(2*n,j)(-6)^j/(b(2*j,j) * b(4*n,2*j)), where b(x,y) = binomial(x,y).

%F a(n) = ((4*n)!/(24)^n) * Hypergeometric1F1([-n], [1/2 -2*n], -3/2).

%F Sum_{n>=0} a(n)*x^n/(n!*(2*n)!) = 1/sqrt(1+x) * Hypergeometric2F0([1/4, 3/4]; --; 8*x/(3*(1+x)^2)). (End)

%F a(n) ~ sqrt(Pi) * 2^(5*n + 3/2) * n^(4*n + 1/2) / (3^n * exp(4*n + 3/4)). - _Vaclav Kotesovec_, Oct 21 2023

%t Table[((4*n)!/(24)^n)*Hypergeometric1F1[-n, 1/2-2*n, -3/2], {n,0,30}] (* _G. C. Greubel_, Oct 12 2023 *)

%o (Magma)

%o B:=Binomial;

%o A134772:= func< n | Factorial(4*n)/(24)^n *(&+[B(n,j)*B(2*n,j)*(-6)^j/(Factorial(j)*B(2*j,j)*B(4*n,2*j)) : j in [0..n]]) >;

%o [A134772(n): n in [0..30]]; // _G. C. Greubel_, Oct 12 2023

%o (SageMath)

%o def A134772(n): return (factorial(4*n)/(24)^n)* simplify(hypergeometric([-n], [1/2-2*n], -3/2))

%o [A134772(n) for n in range(31)] # _G. C. Greubel_, Oct 12 2023

%Y A variant of A132202.

%Y Bisections: A137942, A144649.

%Y Cf. A134648, A152296.

%K nonn

%O 0,3

%A _N. J. A. Sloane_, Oct 18 2009

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 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)