login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A023433 Generalized Catalan Numbers. 0
1, 1, 1, 1, 1, 2, 4, 7, 12, 21, 38, 70, 129, 238, 442, 827, 1556, 2939, 5570, 10593, 20214, 38690, 74251, 142844, 275430, 532215, 1030440, 1998733, 3883552, 7557865, 14730670, 28751455, 56192036, 109959882, 215431019, 422541192 (list; graph; refs; listen; history; internal format)
OFFSET

0,6

MAPLE

a:= proc(n) option remember;

      `if` (n=0, 1, a(n-1) +add (a(k)*a(n-3-k), k=2..n-3))

    end:

seq (a(n), n=0..50);  # Alois P. Heinz, May 08, 2011

MATHEMATICA

Clear[ a ]; a[ 0 ]=1; a[ n_Integer ] := a[ n ]=a[ n-1 ]+Sum[ a[ k ]*a[ n-3-k ], {k, 2, n-3} ];

CROSSREFS

Cf. A000108, A001006, A004148, A006318.

Sequence in context: A103197 A000709 A054161 * A190168 A005126 A054151

Adjacent sequences:  A023430 A023431 A023432 * A023434 A023435 A023436

KEYWORD

nonn,easy

AUTHOR

Olivier Gerard (olivier.gerard(AT)gmail.com)

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 08:18 EST 2012. Contains 205608 sequences.