The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A287987 Number of Dyck paths of semilength n such that all positive levels have the same number of peaks. 6
1, 1, 1, 3, 1, 8, 13, 13, 54, 132, 280, 547, 1219, 3904, 11107, 25082, 53777, 137751, 419831, 1257599, 3453557, 8911341, 22636845, 59890162, 172264224, 529706648, 1630328686, 4765347773, 13125989799, 35253234315, 97531470556, 287880507391, 894915519516 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
EXAMPLE
. a(3) = 3: /\ /\
. /\/\/\ /\/ \ / \/\ .
.
. a(5) = 8:
. /\/\ /\/\ /\/\
. /\/\/\/\/\ /\/\/ \ /\/ \/\ / \/\/\
.
. /\ /\ /\ /\
. /\/ \ / \/\ /\/ \ / \/\
. /\/ \ /\/ \ / \/\ / \/\ .
MAPLE
b:= proc(n, k, j) option remember; `if`(n=j, 1,
add(binomial(i, k)*binomial(j-1, i-1-k)
*b(n-j, k, i), i=1+k..min(j+k, n-j)))
end:
a:= n-> 1+add(b(n, j$2), j=1..n/2):
seq(a(n), n=0..33);
MATHEMATICA
b[n_, k_, j_] := b[n, k, j] = If[n == j, 1, Sum[Binomial[i, k]*Binomial[j - 1, i - 1 - k]*b[n - j, k, i], {i, 1 + k, Min[j + k, n - j]}]];
a[n_] := 1 + Sum[b[n, j, j], {j, 1, n/2}];
Table[a[n], {n, 0, 33}] (* Jean-François Alcover, May 24 2018, translated from Maple *)
CROSSREFS
Row sums of A288318.
Sequence in context: A019146 A102537 A131202 * A067955 A182509 A049965
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 03 2017
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 17 08:10 EDT 2024. Contains 372579 sequences. (Running on oeis4.)