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!)
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 (list; graph; refs; listen; history; text; internal format)
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

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 April 18 18:10 EDT 2024. Contains 371781 sequences. (Running on oeis4.)