OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..300
FORMULA
a(n) = Sum_{k=0,..,n} C(k)*4^k, n>=0, with C(n):=A000108(n).
G.f.: c(4*x)/(1-x), where c(x):=(1-sqrt(1-4*x))/(2*x) is the o.g.f. of Catalan numbers A000108.
Recurrence: (n+1)*a(n) = (17*n-7)*a(n-1) - 8*(2*n-1)*a(n-2). - Vaclav Kotesovec, Oct 19 2012
a(n) ~ 16^(n+1)/(15*sqrt(Pi)*n^(3/2)). - Vaclav Kotesovec, Oct 19 2012
MATHEMATICA
CoefficientList[Series[(1-Sqrt[1-16*x])/(8*x)/(1-x), {x, 0, 20}], x] (* Vaclav Kotesovec, Oct 19 2012 *)
With[{nn=20}, Accumulate[4^Range[0, nn] CatalanNumber[Range[0, nn]]]] (* Harvey P. Dale, Mar 11 2023 *)
PROG
(PARI) x='x+O('x^50); Vec((1-sqrt(1-16*x))/(8*x*(1-x))) \\ G. C. Greubel, Mar 17 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Oct 31 2005
EXTENSIONS
Definition clarified by Harvey P. Dale, Mar 11 2023
STATUS
approved