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!)
A062032 Group odd numbers into (1), (3,5), (7,9,11), (13,15,17,19), ...; a(n) = product of n-th group. 5
1, 15, 693, 62985, 9454725, 2118331215, 662496582825, 275735605996305, 147364622598587625, 98358760729571316975, 80185770642041047108125, 78405694972326706112753625, 90569612902695107431619494125 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Product_{k=0..n-1} (2*k + n*(n-1) + 1). - Harry J. Smith, Jul 30 2009
a(n) = (Gamma(2*binomial(n+1, 2) + 1)*Gamma(binomial(n, 2) + 1))/(2^n*Gamma(binomial(n+1, 2) + 1)*Gamma(2*binomial(n, 2) + 1)). - G. C. Greubel, May 06 2022
EXAMPLE
a(3) = 7*9*11 = 693.
MATHEMATICA
Times@@@FoldPairList[TakeDrop, Range[1, len^2+len-1, 2], Range[len]]] (* The program uses the FoldPairList and TakeDrop functions from Mathematica version 10 *) (* Harvey P. Dale, Jul 29 2015 *)
Table[(Gamma[2*Binomial[n+1, 2] +1]*Gamma[Binomial[n, 2] +1])/(2^n*Gamma[Binomial[n +1, 2] +1]*Gamma[2*Binomial[n, 2] +1]), {n, 30}] (* G. C. Greubel, May 06 2022 *)
PROG
(PARI) { for (n=1, 100, b=n^2 - n + 1; write("b062032.txt", n, " ", prod(k=0, n - 1, b + 2*k)) ) } \\ Harry J. Smith, Jul 30 2009
(SageMath) [(gamma(2*binomial(n+1, 2) +1)*gamma(binomial(n, 2) +1))/(2^n*gamma(binomial(n+1, 2) +1)*gamma(2*binomial(n, 2) +1)) for n in (1..30)] # G. C. Greubel, May 06 2022
CROSSREFS
Sequence in context: A209499 A001520 A062079 * A204251 A281764 A209740
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Jun 02 2001
EXTENSIONS
More terms from Jason Earls, Jun 08 2001
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 06:57 EDT 2024. Contains 371265 sequences. (Running on oeis4.)