OFFSET
0,2
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..250
FORMULA
O.g.f. A(x) satisfies 0 = 6*A(x) + (-2 + 54*x) * A'(x) + 27*x^2 * A''(x). - Michael Somos, Jul 11 2014
E.g.f. A(x) satisfies 0 = 6*A(x) + (-2 + 54*x) * A'(x) + (-2*x + 27*x^2) * A''(x). - Michael Somos, Jul 11 2014
a(n) = (3*n)! / (2^n * n!^2). - Michael Somos, Jul 11 2014
a(n) = (2*n-1)!! * [x^(2*n)] x^n/(1 - x)^(2*n+1). - Ilya Gutkovskiy, Nov 24 2017
EXAMPLE
G.f. = 1 + 3*x + 45*x^2 + 1260*x^3 + 51975*x^4 + 2837835*x^5 + ...
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
AUTHOR
Reinhard Zumkeller, Jul 11 2014
STATUS
approved