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”).

A375282
Expansion of (1 - x - x^4)/((1 - x - x^4)^2 - 4*x^5).
3
1, 1, 1, 1, 2, 7, 16, 29, 47, 82, 162, 331, 650, 1220, 2262, 4261, 8175, 15747, 30121, 57210, 108521, 206456, 393865, 751675, 1432772, 2728076, 5193901, 9893596, 18853664, 35928972, 68454369, 130403085, 248413549, 473261209, 901681650, 1717923403, 3272944760
OFFSET
0,5
FORMULA
a(n) = 2*a(n-1) - a(n-2) + 2*a(n-4) + 2*a(n-5) - a(n-8).
a(n) = Sum_{k=0..floor(n/4)} binomial(2*n-6*k,2*k).
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec((1-x-x^4)/((1-x-x^4)^2-4*x^5))
(PARI) a(n) = sum(k=0, n\4, binomial(2*n-6*k, 2*k));
CROSSREFS
Cf. A375279.
Sequence in context: A162420 A130883 A375284 * A360284 A005581 A375279
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 09 2024
STATUS
approved