OFFSET
0,2
COMMENTS
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Eric Weisstein's World of Mathematics, Central Binomial Coefficient.
Eric Weisstein's World of Mathematics, Binomial Sums.
FORMULA
a(n) = 16^n * Sum_{k=0..n} ((2k)!/(k!)^2) / 16^k.
a(n) = 16^n * Sum_{k=0..n} binomial(2k,k) / 16^k.
G.f.: 1/((1-16*x)*sqrt(1-4*x)). - R. J. Mathar, Nov 13 2009
Recurrence: n*a(n) = 2*(10*n-1)*a(n-1) - 32*(2*n-1)*a(n-2). - Vaclav Kotesovec, Oct 20 2012
a(n) ~ 2^(4*n+1)/sqrt(3). - Vaclav Kotesovec, Oct 20 2012
MAPLE
A167713 := proc(n) coeftayl( 1/(1-16*x)/sqrt(1-4*x), x=0, n) ; end proc: seq(A167713(n), n=0..40) ; # R. J. Mathar, Nov 13 2009
MATHEMATICA
16^n * Sum[ (2k)!/(k!)^2 / 16^k, {k, 0, 50} ].
CoefficientList[Series[1 / ((1 - 16 x) Sqrt[1 - 4 x]), {x, 0, 20}], x] (* Vincenzo Librandi, May 27 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Nov 10 2009
EXTENSIONS
Extended by R. J. Mathar, Nov 13 2009
STATUS
approved