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

A379192
G.f. A(x) satisfies A(x) = (1 + x*A(x))^3/(1 - x*A(x)^2).
1
1, 4, 27, 235, 2344, 25374, 289906, 3441015, 42017262, 524418639, 6660297019, 85796763321, 1118314903447, 14722203914653, 195465862293738, 2614323606027841, 35191188308646852, 476390139438508209, 6481416282265645008, 88577523301166187997, 1215421503348039618483
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..n} binomial(n+2*k+1,k) * binomial(3*n+3*k+3,n-k)/(n+2*k+1).
PROG
(PARI) a(n) = sum(k=0, n, binomial(n+2*k+1, k)*binomial(3*n+3*k+3, n-k)/(n+2*k+1));
CROSSREFS
Sequence in context: A160883 A362274 A328978 * A185655 A181146 A303559
KEYWORD
nonn,new
AUTHOR
Seiichi Manyama, Dec 17 2024
STATUS
approved