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!)
A113551 a(n) = product of next n even numbers beginning with n if n is even, otherwise product of next n odd numbers beginning with n. 8
1, 8, 105, 1920, 45045, 1290240, 43648605, 1703116800, 75293843625, 3719607091200, 203067496256625, 12140797545676800, 788917222956988125, 55362036808286208000, 4172583192219510193125, 336158287499913854976000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = 2^n*Gamma(3*n/2)/Gamma(n/2). Column 2 of A303489. - Peter Bala, Jan 12 2020
EXAMPLE
a(3) = 3*5*7 = 105, a(4) = 4*6*8*10 = 1920.
MAPLE
seq(mul((2*k+n), k=1..n)/3, n=1..16); # Zerinvary Lajos, Jan 29 2008
MATHEMATICA
Do[Print[Product[n + 2i, {i, 0, n - 1}]], {n, 1, 20}] (* Tracy Poff (tracy.poff(AT)gmail.com), Dec 31 2005 *)
Table[Times@@Range[n, 3n-2, 2], {n, 20}] (* or *) Table[(2^n Gamma[(3n)/2])/Gamma[n/2], {n, 20}] (* Harvey P. Dale, Nov 28 2022 *)
PROG
(PARI) for(n=1, 25, print1(prod(k=0, n-1, n+2*k), ", ")) \\ G. C. Greubel, Sep 30 2017
CROSSREFS
Sequence in context: A001922 A264014 A222839 * A082735 A024358 A055406
KEYWORD
easy,nonn
AUTHOR
Amarnath Murthy, Nov 03 2005
EXTENSIONS
More terms from Tracy Poff (tracy.poff(AT)gmail.com), Dec 31 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 May 15 02:15 EDT 2024. Contains 372536 sequences. (Running on oeis4.)