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

A369691
G.f. satisfies A(x) = 1/(1-x)^3 + x^3*A(x)^3.
1
1, 3, 6, 11, 24, 66, 196, 576, 1692, 5110, 15933, 50604, 161988, 521700, 1693362, 5541679, 18260055, 60487659, 201272437, 672550158, 2256204327, 7596059333, 25655943417, 86904524289, 295154911774, 1004906765178, 3429178160346, 11726499288028, 40178538608682
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..floor(n/3)} binomial(n+3*k+2,n-3*k) * binomial(3*k,k) / (2*k+1).
PROG
(PARI) a(n) = sum(k=0, n\3, binomial(n+3*k+2, n-3*k)*binomial(3*k, k)/(2*k+1));
CROSSREFS
Cf. A364589.
Sequence in context: A346050 A319636 A001867 * A000998 A331536 A365294
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 29 2024
STATUS
approved