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

A364624
G.f. satisfies A(x) = 1/(1-x)^3 + x*A(x)^4.
2
1, 4, 22, 194, 2103, 25129, 318816, 4214724, 57419725, 800461033, 11363418314, 163708299724, 2387365301187, 35173224652637, 522752043513952, 7827979832083872, 117992516684761733, 1788819120580964014, 27258417705055812586, 417270970443908301926
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..n} binomial(n+8*k+2,9*k+2) * binomial(4*k,k) / (3*k+1).
PROG
(PARI) a(n) = sum(k=0, n, binomial(n+8*k+2, 9*k+2)*binomial(4*k, k)/(3*k+1));
CROSSREFS
Sequence in context: A197961 A203120 A002728 * A062494 A183274 A303330
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 30 2023
STATUS
approved