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

A023429
Generalized Catalan Numbers.
1
1, 1, 1, 1, 1, 1, 1, 2, 4, 7, 11, 17, 27, 44, 73, 122, 204, 340, 566, 945, 1586, 2674, 4521, 7656, 12982, 22047, 37509, 63934, 109166, 186685, 319679, 548091, 940819, 1616830, 2781706, 4790949, 8259748, 14253480, 24618561, 42557378
OFFSET
0,8
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = (1 + x^4 * A(x)^2) / (1 - x + x^4 + x^5 + x^6). - Ilya Gutkovskiy, Jul 20 2021
MAPLE
a:= proc(n) option remember;
`if`(n=0, 1, a(n-1) +add(a(k)*a(n-4-k), k=3..n-4))
end:
seq(a(n), n=0..50); # Alois P. Heinz, May 07 2011
MATHEMATICA
Clear[ a ]; a[ 0 ]=1; a[ n_Integer ] := a[ n ]=a[ n-1 ]+Sum[ a[ k ]*a[ n-4-k ], {k, 3, n-4} ];
CROSSREFS
KEYWORD
nonn,easy
STATUS
approved