login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A062031
Group odd numbers into (1), (3,5,7), (9,11,13,15,17), ...; a(n) = product of n-th group.
5
1, 105, 328185, 5568833025, 304513870485825, 40992233865440682825, 11492457771692770753505625, 5984524775454356180393209490625, 5325142910343897163530366857379506625, 7598549164899334249502031499667984969915625
OFFSET
1,2
LINKS
FORMULA
a(n) = Product_{k=0..2*n-2} (2*k + 2*n*(n-2) + 3). - Harry J. Smith, Jul 30 2009
a(n) = (Gamma(2*n^2 + 1)*Gamma((n-1)^2 + 1))/(2^(2*n-1)*Gamma(n^2 + 1)*Gamma(2*(n-1)^2 + 1)). - G. C. Greubel, May 06 2022
EXAMPLE
a(2) = 3*5*7 = 105.
MATHEMATICA
Table[(Gamma[2*n^2 +1]*Gamma[(n-1)^2 +1])/(2^(2*n-1)*Gamma[n^2 +1]*Gamma[2*(n-1)^2 +1]), {n, 30}] (* G. C. Greubel, May 06 2022 *)
PROG
(PARI) a(n) = { my(b=2*n^2 - 4*n + 3); prod(k=0, 2*n - 2, b + 2*k) } \\ Harry J. Smith, Jul 30 2009
(SageMath) [(gamma(2*n^2 +1)*gamma((n-1)^2 +1))/(2^(2*n-1)*gamma(n^2 +1)*gamma(2*(n-1)^2 +1)) for n in (1..30)] # G. C. Greubel, May 06 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Jun 02 2001
EXTENSIONS
More terms from Matthew Conroy, Jun 11 2001
STATUS
approved