OFFSET
0,2
COMMENTS
Essentially the inverse binomial convolution of the Delannoy numbers.
FORMULA
a(n) = n! * [x^n] BesselJ(0, sqrt(8)*x).
D-finite with recurrence a(n) = 4*(1 - 2*n)*a(n - 1) / n for n >= 2.
a(n) = A(2*n) where A(n) = Sum_{k=0..n} (-1)^(n-k)*binomial(n, k)*A008288(n, k).
MAPLE
gf := 1/sqrt(8*x^2 + 1): ser := series(gf, x, 32):
seq(coeff(ser, x, 2*n), n = 0..21);
MATHEMATICA
Take[CoefficientList[Series[1/Sqrt[8*x^2 + 1], {x, 0, 42}], x], {1, -1, 2}] (* Amiram Eldar, May 05 2021 *)
PROG
(PARI) my(x='x+O('x^25)); Vec(1/sqrt(8*x + 1)) \\ Michel Marcus, May 04 2021
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Peter Luschny, May 04 2021
STATUS
approved