OFFSET
0,3
COMMENTS
Hankel transform is 4^n=A000302(n).
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..1001
Isaac DeJager, Madeleine Naquin, Frank Seidl, Colored Motzkin Paths of Higher Order, VERUM 2019.
FORMULA
a(n) = Sum_{k = 0..n} binomial(n,k)*b(k), where b(n) = Sum_{k = 0..n} binomial(n+k,k) * (-2)^(n-k). - Peter Bala, Jun 18 2025
From Vaclav Kotesovec, Jun 22 2025: (Start)
Recurrence: 5*(n-2)*a(n-3) + (9*n-26)*a(n-2) + (12-17*n)*a(n-1) + 3*n*a(n) = 0.
a(n) ~ 5^(n + 1/2) / (4*sqrt(Pi*n)). (End)
MATHEMATICA
Block[{$MaxExtraPrecision = 10^3, s = Rest@ CoefficientList[Series[(1 + 3 x - Sqrt[1 - 6 x + 5 x^2])/(2 x^2 + 6 x), {x, 0, 21}], x]}, Nest[Append[#, 5 #[[-1]] - 4 s[[Length@ # - 1]] ] &, {1, 1}, Length@ s]] (* Michael De Vlieger, Dec 15 2019, after Robert G. Wilson v at A117641 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Philippe Deléham, Mar 19 2007
EXTENSIONS
a(11) and a(22) corrected by Michael De Vlieger, Dec 15 2019
STATUS
approved
