OFFSET
0,2
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..250
FORMULA
From Michael Somos, Jul 11 2014: (Start)
O.g.f. A(x) satisfies 0 = 6*A(x) + (-2 + 54*x) * A'(x) + 27*x^2 * A''(x).
E.g.f. A(x) satisfies 0 = 6*A(x) + (-2 + 54*x) * A'(x) + (-2*x + 27*x^2) * A''(x).
a(n) = (3*n)! / (2^n * n!^2). (End)
a(n) = (2*n-1)!! * [x^(2*n)] x^n/(1 - x)^(2*n+1). - Ilya Gutkovskiy, Nov 24 2017
a(n) ~ 3^(3*n+1/2) * n^(n-1/2) / (2^(n+1/2) * exp(n) * sqrt(Pi)). - Amiram Eldar, Sep 21 2025
EXAMPLE
G.f. = 1 + 3*x + 45*x^2 + 1260*x^3 + 51975*x^4 + 2837835*x^5 + ...
MATHEMATICA
a[n_] := (3*n)! / (2^n * n!^2); Array[a, 20, 0] (* Amiram Eldar, Sep 21 2025 *)
PROG
(Haskell)
a245066 n = a001497 (2 * n) n
(PARI) {a(n) = if( n<0, 0, (3*n)! / (2^n * n!^2))}; /* Michael Somos, Jul 11 2014 */
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Jul 11 2014
STATUS
approved
