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!)
A120248 a(n) = Product_{k=0..n} C(n+k+2, n+2). 2
1, 4, 75, 7056, 3457440, 9032601600, 127843321480875, 9917120529316000000, 4253520573615071657074176, 10156681309872614660803421798400, 135766978921156343322148046967386880000, 10205737152660536205131284348877857357824000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Divisors in number triangle A120247.
LINKS
FORMULA
a(n) = Gamma(n+2)*BarnesG(2*n+4)/((Gamma(n+3))^(n-1)*BarnesG(n+4)^2). - G. C. Greubel, Mar 16 2023
a(n) ~ A * 2^(47/12 + 11*n/2 + 2*n^2) / (exp(19/6 + 2*n + n^2/2) * Pi^((n+1)/2) * n^(5/12 + n/2)), where A = A074962 is the Glaisher-Kinkelin constant. - Vaclav Kotesovec, Aug 29 2023
MATHEMATICA
Table[Gamma[n+2]*BarnesG[2*n+4]/((Gamma[n+3])^(n-1)*BarnesG[n+4]^2), {n, 0, 20}] (* G. C. Greubel, Mar 16 2023 *)
PROG
(Magma)
A120248:= func< n | (&*[Binomial(n+j+2, n+2): j in [0..n]]) >;
[A120248(n): n in [0..20]]; // G. C. Greubel, Mar 16 2023
(SageMath)
def A120248(n): return product( binomial(n+j+2, n+2) for j in range(n+1))
[A120248(n) for n in range(21)] # G. C. Greubel, Mar 16 2023
(PARI) a(n) = prod(k=0, n, binomial(n+k+2, n+2)); \\ Michel Marcus, Mar 16 2023
CROSSREFS
Cf. A120247.
Sequence in context: A206456 A137220 A006236 * A191505 A100323 A262073
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jun 12 2006
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)