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

A366216
G.f. A(x) satisfies A(x) = 1 + x*(1 + x)^4*A(x)^4.
2
1, 1, 8, 60, 520, 4886, 48384, 497460, 5259872, 56834345, 624819148, 6966612604, 78592083420, 895432704860, 10288759392156, 119089472755860, 1387274092156508, 16251727492295812, 191342076640423136, 2262894045516407118, 26869820052175649836
OFFSET
0,3
FORMULA
a(n) = Sum_{k=0..n} binomial(4*k,n-k) * binomial(4*k,k)/(3*k+1).
PROG
(PARI) a(n) = sum(k=0, n, binomial(4*k, n-k)*binomial(4*k, k)/(3*k+1));
CROSSREFS
Sequence in context: A373757 A160228 A274746 * A317774 A099337 A356595
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 04 2023
STATUS
approved