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

A366432
G.f. A(x) satisfies A(x) = 1 + x * (A(x) / (1 - x))^(7/2).
7
1, 1, 7, 49, 378, 3136, 27363, 247597, 2302511, 21872361, 211336755, 2070577285, 20522662832, 205411356794, 2073258075175, 21078157565623, 215658366319375, 2218853063356937, 22942886758494094, 238284942878492146, 2484736162773443446
OFFSET
0,3
FORMULA
a(n) = Sum_{k=0..n} binomial(n+5*k/2-1,n-k) * binomial(7*k/2,k) / (5*k/2+1).
PROG
(PARI) a(n) = sum(k=0, n, binomial(n+5*k/2-1, n-k)*binomial(7*k/2, k)/(5*k/2+1));
CROSSREFS
Partial sums give A366401.
Sequence in context: A344251 A333515 A324353 * A349781 A199554 A343583
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 09 2023
STATUS
approved