OFFSET
0,3
COMMENTS
Binomial transform of A048990 (with interpolated zeros).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..300
FORMULA
a(n) = sum{k=0..n} binomial(n,k) * C(k) * (1+(-1)^k)/2.
Recurrence: n*(n+1)*a(n) = 2*n*(2*n-1)*a(n-1) + 2*(5*n^2-10*n+3)*a(n-2) - 14*(n-2)*(2*n-3)*a(n-3) + 15*(n-3)*(n-2)*a(n-4). - Vaclav Kotesovec, Oct 24 2012
a(n) ~ 5^(n+3/2)/(16*sqrt(Pi)*n^(3/2)). - Vaclav Kotesovec, Oct 24 2012
MATHEMATICA
CoefficientList[Series[(Sqrt[1+3*x]-Sqrt[1-5*x])/(4*x*Sqrt[1-x]), {x, 0, 20}], x] (* Vaclav Kotesovec, Oct 24 2012 *)
PROG
(PARI) x='x+O('x^66); Vec((sqrt(1+3*x)-sqrt(1-5*x))/(4*x*sqrt(1-x))) \\ Joerg Arndt, May 11 2013
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Sep 09 2004
STATUS
approved