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

A371490
Expansion of 1/(1 - x/(1 - 8*x)^(1/4)).
0
1, 1, 3, 15, 91, 601, 4155, 29553, 214303, 1575931, 11712599, 87776507, 662224819, 5023611579, 38284084575, 292892970967, 2248271735299, 17307950940833, 133580448494227, 1033263820897777, 8008342899292167, 62179343789159945, 483553052098053915
OFFSET
0,3
FORMULA
a(n) = Sum_{k=0..n} 8^k * binomial((n+3*k)/4-1,k).
PROG
(PARI) a(n) = sum(k=0, n, 8^k*binomial((n+3*k)/4-1, k));
CROSSREFS
Cf. A373509.
Sequence in context: A077783 A347319 A047019 * A099251 A364740 A371435
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 07 2024
STATUS
approved