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

A348530
a(1) = 1; a(n) = Sum_{k=1..ceiling(n/2)} a(k) * a(n-k).
1
1, 1, 2, 3, 7, 14, 33, 70, 173, 400, 1008, 2391, 6132, 15019, 38799, 96520, 252022, 638788, 1679091, 4297452, 11373921, 29426350, 78204705, 203658812, 543828898, 1426912159, 3822817135, 10078227662, 27092960887, 71803114869, 193496832857, 514684042158
OFFSET
1,3
LINKS
MAPLE
a:= proc(n) option remember; `if`(n=1, 1,
add(a(k)*a(n-k), k=1..ceil(n/2)))
end:
seq(a(n), n=1..32); # Alois P. Heinz, Oct 21 2021
MATHEMATICA
a[1] = 1; a[n_] := a[n] = Sum[a[k] a[n - k], {k, 1, Ceiling[n/2]}]; Table[a[n], {n, 1, 32}]
CROSSREFS
Sequence in context: A151530 A180752 A000642 * A229734 A035083 A328057
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 21 2021
STATUS
approved