login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A376810
Expansion of 1/sqrt(1 - 4*x/(1 - x^2)^2).
1
1, 2, 6, 24, 94, 378, 1544, 6380, 26598, 111658, 471358, 1998924, 8509368, 36341278, 155634228, 668116136, 2874157222, 12387209982, 53475080494, 231189987224, 1000834283190, 4337864724462, 18821884379924, 81748960355484, 355383570351664, 1546239230878154
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..floor(n/2)} binomial(2*n-3*k-1,k) * binomial(2*n-4*k,n-2*k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(1/sqrt(1-4*x/(1-x^2)^2))
(PARI) a(n) = sum(k=0, n\2, binomial(2*n-3*k-1, k)*binomial(2*n-4*k, n-2*k));
CROSSREFS
Cf. A349713.
Sequence in context: A375276 A374598 A361752 * A115220 A293185 A292984
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 04 2024
STATUS
approved