OFFSET
6,1
COMMENTS
An up-jump j occurs at position i in p if p_{i} > p_{i-1} and j is the index of p_i in the increasingly sorted list of those elements in {p_{i}, ..., p_{n}} that are larger than p_{i-1}. A down-jump j occurs at position i in p if p_{i} < p_{i-1} and j is the index of p_i in the decreasingly sorted list of those elements in {p_{i}, ..., p_{n}} that are smaller than p_{i-1}. First index in the lists is 1 here.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 6..2000
EXAMPLE
a(6) = 52: 612345, 613245, 613425, 613452, 613524, 613542, 614235, 614253, 614325, 614352, 614532, 615234, 615243, 615324, 615342, 615432, 621345, 623145, 623415, 623451, 624135, 624153, 624315, 624351, 624531, 625134, 625143, 625314, 625341, 625431, 631245, 631425, 631452, 632145, 632415, 632451, 634215, 634251, 634521, 635214, 635241, 635421, 642135, 642315, 642351, 642513, 642531, 643215, 643251, 643521, 645321, 654321.
MAPLE
b:= proc(u, o, t) option remember; `if`(u+o=0, 1,
add(b(u-j, o+j-1, j), j=1..min(t, u))+
add(b(u+j-1, o-j, j), j=1..min(t, o)))
end:
a:= n-> b(0, n, 6)-b(0, n, 5):
seq(a(n), n=6..50);
CROSSREFS
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 10 2017
STATUS
approved