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

A366272
G.f. A(x) satisfies A(x) = 1 + x*(1 + x)^3*A(x)^4.
14
1, 1, 7, 49, 399, 3521, 32767, 316673, 3147775, 31977985, 330544639, 3465369601, 36759599103, 393820102657, 4255079743487, 46313023946753, 507319247208447, 5588706552643585, 61875364144283647, 688128167799619585, 7683686768042639359
OFFSET
0,3
FORMULA
a(n) = Sum_{k=0..n} binomial(3*k,n-k) * binomial(4*k,k)/(3*k+1).
G.f.: A(x) = 1/B(-x) where B(x) is the g.f. of A366436.
PROG
(PARI) a(n) = sum(k=0, n, binomial(3*k, n-k)*binomial(4*k, k)/(3*k+1));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 06 2023
STATUS
approved