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!)
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 (list; graph; refs; listen; history; text; internal format)
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) { for (n=1, 100, b=2*n^2 - 4*n + 3; write("b062031.txt", n, " ", 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
Sequence in context: A225217 A096150 A068256 * A199522 A036201 A286287
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Jun 02 2001
EXTENSIONS
More terms from Matthew Conroy, Jun 11 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 April 24 11:21 EDT 2024. Contains 371936 sequences. (Running on oeis4.)