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

A364629
G.f. satisfies A(x) = (1+x*A(x)^3)/(1-x)^2.
7
1, 3, 14, 94, 735, 6239, 55888, 520028, 4977321, 48689260, 484623552, 4892304686, 49971163021, 515496741918, 5363023614620, 56204877993184, 592811175777029, 6287909183751105, 67029933733468729, 717749621979800340, 7716543390041275964
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..n} binomial(n+5*k+1,6*k+1) * binomial(3*k,k) / (2*k+1).
PROG
(PARI) a(n) = sum(k=0, n, binomial(n+5*k+1, 6*k+1)*binomial(3*k, k)/(2*k+1));
CROSSREFS
Cf. A364620.
Sequence in context: A089462 A088342 A358118 * A074531 A091906 A214378
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 30 2023
STATUS
approved