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

A373292
Expansion of 1/(1 - x/(1 - 8*x^3)^(1/4)).
0
1, 1, 1, 1, 3, 5, 7, 19, 35, 55, 139, 267, 447, 1077, 2115, 3689, 8595, 17101, 30703, 69797, 140027, 256873, 573167, 1156221, 2156555, 4742759, 9603287, 18149083, 39457727, 80104735, 153007747, 329580959, 670338231, 1291649283, 2761199459, 5623490391
OFFSET
0,5
FORMULA
a(n) = Sum_{k=0..floor(n/3)} 8^k * binomial((n+k)/4-1,k).
PROG
(PARI) a(n) = sum(k=0, n\3, 8^k*binomial((n+k)/4-1, k));
CROSSREFS
Cf. A373509.
Sequence in context: A106919 A005850 A052334 * A322302 A154526 A126144
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 07 2024
STATUS
approved