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”).

A014298
a(n) = 2^n * (3n)! / (2n+1)!.
1
1, 2, 24, 576, 21120, 1048320, 65802240, 5000970240, 446557224960, 45830873088000, 5316381278208000, 687893507997696000, 98231192942070988800, 15345895252950201139200, 2603510504983275503616000, 476694375041453927694336000, 93692112621783944697741312000
OFFSET
0,2
LINKS
FORMULA
From G. C. Greubel, Jun 12 2019: (Start)
G.f.: Hypergeometric3F1(1/3, 2/3, 1; 3/2; 27*x/2).
E.g.f.: sqrt(2/(3*x)) * sin( arcsin(sqrt(27*x/2))/3 ).
E.g.f.: hypergeometric2F1(1/3, 2/3; 3/2; 27*x/2) (End)
MATHEMATICA
Table[2^n (3n)!/(2n+1)!, {n, 0, 20}] (* Harvey P. Dale, Mar 19 2016 *)
PROG
(PARI) a(n) = 2^n * (3*n)! / (2*n+1)! \\ Michel Marcus, Jun 24 2013
(Magma) [2^n*Factorial(3*n)/Factorial(2*n+1): n in [0..20]]; // G. C. Greubel, Jun 12 2019
(Sage) [2^n*factorial(3*n)/factorial(2*n+1) for n in (0..20)] # G. C. Greubel, Jun 12 2019
(GAP) List([0..20], n-> 2^n*Factorial(3*n)/Factorial(2*n+1) ) # G. C. Greubel, Jun 12 2019
CROSSREFS
Sequence in context: A170904 A090732 A377427 * A280794 A090316 A128578
KEYWORD
nonn,easy
AUTHOR
STATUS
approved