OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
I. M. Gessel, A short proof of the Deutsch-Sagan congruence for connected non crossing graphs, arXiv preprint arXiv:1403.7656 [math.CO], 2014. See f_1(n).
FORMULA
a(n) = [x^n] 1/sqrt(1 - 4*x)^(n+2). - Ilya Gutkovskiy, Oct 10 2017
G.f. A(x) satisfies: A(x)^3 * (1 - 108*x^2) = 3*A(x) - 2. - Michael Somos, Jan 27 2018
a(n) = [x^n] ( (1 + 4*x)^(3/2) )^n. It follows that the Gauss congruences a(n*p^k) == a(n*p^(k-1)) (mod p^k) hold for all primes p and positive integers n and k. - Peter Bala, Mar 05 2022
G.f.: 2/(1-2*sin(arcsin(216*x^2-1)/3)). - Vladimir Kruchinin, Oct 06 2022
G.f.: ((3^(5/6)*i + 3^(1/3))*(-18*i*z + sqrt(-324*z^2 + 3))^(1/3) - (3^(5/6)*i - 3^(1/3))*(18*i*z + sqrt(-324*z^2 + 3))^(1/3))/(2*sqrt(-324*z^2 + 3)), where i = sqrt(-1) is the imaginary unit. - Karol A. Penson, Oct 24 2024
MAPLE
f1:=n->4^n*binomial(3*n/2, n); [seq(f1(n), n=0..40)];
MATHEMATICA
Table[4^n Binomial[3 n/2, n], {n, 0, 40}] (* Vincenzo Librandi, Jun 29 2014 *)
PROG
(PARI) {a(n) = if( n<1, n==0, 3^n * polcoeff( serreverse( x / (x+1) / 2 * sqrt((x+3) / (x+1) / 3 + x * O(x^n))), n))}; /* Michael Somos, Jan 27 2018 */
(Magma) [Round(4^n*Gamma(3*n/2+1)/(Gamma(n+1)*Gamma(n/2+1))): n in [0..40]]; // G. C. Greubel, Aug 06 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 28 2014
STATUS
approved