login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A030033 a(n+1) = Sum_{k = 0..floor(2*n/3)} a(k)*a(n-k) for n >= 0 with a(0) = 1. 1
1, 1, 1, 2, 4, 7, 15, 34, 72, 165, 387, 861, 2039, 4894, 11256, 27085, 66021, 156347, 381720, 940211, 2261208, 5578659, 13846756, 33654950, 83539418, 208608556, 512069441, 1278522424, 3207377196, 7925966000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
MAPLE
a := proc(n) local k; option remember;
if n = 0 then 1;
else add(a(k)*a(n - 1 - k), k = 0 .. floor(2/3*n - 2/3));
end if;
end proc;
seq(a(n), n = 0..30); # Petros Hadjicostas, Nov 07 2019
CROSSREFS
Sequence in context: A358824 A072964 A247291 * A364596 A280031 A135131
KEYWORD
nonn
AUTHOR
EXTENSIONS
Name edited by Petros Hadjicostas, Nov 07 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 4 18:21 EDT 2024. Contains 372257 sequences. (Running on oeis4.)