OFFSET
0,2
COMMENTS
a(n) is the number of paths from (0,0) to (6n,n) taking north and east steps and avoiding north^{=2}. - Shanzhen Gao, Apr 15 2010
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
FORMULA
a(n) is asymptotic to c*sqrt(n)*(46656/3125)^n with c= 0.5243... [c = 2*3^(3/2)/(5^(3/2)*sqrt(Pi)) = 0.52442324668419795386... - Vaclav Kotesovec, Feb 14 2019]
G.f.: hypergeom([1/3, 1/2, 2/3, 5/6, 7/6], [2/5, 3/5, 4/5, 6/5], (46656/3125)*x). - Robert Israel, Aug 07 2014
MAPLE
seq(binomial(6*n+1, n), n = 1 .. 100); # Robert Israel, Aug 07 2014
MATHEMATICA
Table[Binomial[6 n + 1, n], {n, 0, 20}] (* Vincenzo Librandi, Aug 07 2014 *)
PROG
(Magma) [Binomial(6*n+1, n): n in [0..20]]; // Vincenzo Librandi, Aug 07 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Jan 26 2003
STATUS
approved