OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..100
M. Bousquet-Mélou, Walks in the quarter plane: Kreweras' algebraic model, arXiv:math/0401067 [math.CO], 2004-2006.
FORMULA
G.f. satisfies A(x) = Sum_{n>=0} a(n)*x^(3n+1) = x(2 + A(x)^3).
G.f.: (2 sin(1/3*arcsin(3*sqrt(3)*sqrt(x))))/(sqrt(3)*sqrt(x)). - Harvey P. Dale, Oct 02 2011
E.g.f.: 2*2F2(1/3,2/3; 1,3/2; 27*x). - Ilya Gutkovskiy, Jan 25 2017
MATHEMATICA
Table[2^(2n+1) Binomial[3n, n]/(2n+1), {n, 0, 20}] (* Harvey P. Dale, Oct 02 2011 *)
PROG
(PARI) a(n)=2^(2*n+1)*binomial(3*n, n)/(2*n+1)
(PARI) a(n)=polcoeff(serreverse(Ser(x/(2+x^3))), 3*n+1)
(Magma) [2^(2*n+1)*Binomial(3*n, n)/(2*n+1): n in [0..20]]; // Vincenzo Librandi, Oct 03 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Ralf Stephan, Sep 02 2004
STATUS
approved