OFFSET
1,1
COMMENTS
The arithmetic mean of these numbers is 2n.
The old definition was "a(n) = product of 2n distinct numbers, n just less than 2n and n just more than 2n."
LINKS
Robert Israel, Table of n, a(n) for n = 1..194
FORMULA
a(n) ~ 3^(3*n+1/2) * n^(2*n) / (2*exp(2*n)). - Vaclav Kotesovec, Oct 21 2014
From Robert Israel, Jan 16 2017: (Start)
a(n) = (3*n)!/(2*n!).
a(n+1) = 3*(3*n+2)*(3*n+1)*a(n). (End)
EXAMPLE
a(3) = (3*4*5)*(7*8*9).
MAPLE
seq((3*n)!/(2*n!), n=1..50); # Robert Israel, Jan 16 2017
MATHEMATICA
Table[(3n)!/(2n*(n - 1)!), {n, 12}] (* Robert G. Wilson v, Apr 24 2004 *)
PROG
(Magma) [Factorial(3*n)/(2*Factorial(n)): n in [1..15]]; // Vincenzo Librandi, Jan 17 2017
(PARI) for(n=1, 30, print1((3*n)!/(2*n!), ", ")) \\ G. C. Greubel, Feb 13 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Apr 01 2004
EXTENSIONS
More terms from Robert G. Wilson v, Apr 24 2004
Replaced definition with formula provided by Vaclav Kotesovec, Oct 21 2014. - N. J. A. Sloane, Jan 17 2017
STATUS
approved