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!)
A107252 a(n) = Product_{k=0..n-1} (n+k)!/(k+1)!. 2
1, 1, 6, 1440, 36288000, 184354652160000, 309071606732292096000000, 254046582743105184577722777600000000, 142518177743863255019484504453155074867200000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (n+1)!*(n+2)!*...*(2n-1)!/(1!*2!*...*(n-1)!).
a(n) = A000178(2n-1)/(A000178(n)*A000178(n-1)).
a(n) = A079478(n)/A001813(n).
a(n) = A079478(n-1)*A006963(n+1).
a(n) = A107251(n)/A000108(n).
a(n) = A107251(n-1)*A009445(n-1).
a(n) = A107254(n)/A000142(n).
a(n) = A009963(2n-1, n-1).
a(n) = A009963(2n-1, n).
a(n) = (G(1+2*n)*n!*((G(2+n)*Gamma(2+n))/G(3+n))^(n-1))/G(2+n)^2, where G(x) is the Barnes G function. - Peter Luschny, May 20 2019
a(n) ~ A * 2^(2*n^2 - 7/12) * n^(n^2 - n - 5/12) / (sqrt(Pi) * exp(3*n^2/2 - n + 1/12)), where A is the Glaisher-Kinkelin constant A074962. - Vaclav Kotesovec, May 21 2019
EXAMPLE
a(3) = 1!*2!*3!*4!*5!/(1!*2!*3!*1!*2!) = 34560/24 = 1440.
MATHEMATICA
Table[Product[(n+k)!/(k+1)!, {k, 0, n-1}], {n, 0, 10}] (* Alexander Adamchuk, Jul 10 2006 *)
a[n_] := (BarnesG[1 + 2 n] n! ((BarnesG[2 + n] Gamma[2 + n])/ BarnesG[3 + n])^(-1 + n))/BarnesG[2 + n]^2; Table[a[n], {n, 0, 10}] (* Peter Luschny, May 20 2019 *)
PROG
(PARI) {a(n) = prod(k=0, n-1, (n+k)!/(k+1)!)}; \\ G. C. Greubel, May 21 2019
(Magma) [1] cat [(&*[Factorial(n+k)/Factorial(k+1): k in [0..n-1]]): n in [1..10]]; // G. C. Greubel, May 21 2019
(Sage) [product(factorial(n+k)/factorial(k+1) for k in (0..n-1)) for n in (0..10)] # G. C. Greubel, May 21 2019
CROSSREFS
Sequence in context: A265473 A199645 A300025 * A358626 A131453 A265862
KEYWORD
nonn
AUTHOR
Henry Bottomley, May 14 2005
STATUS
approved

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 March 29 08:59 EDT 2024. Contains 371268 sequences. (Running on oeis4.)