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!)
A291688 Number of permutations p of [2n] such that 0p has a nonincreasing jump sequence beginning with n. 3
1, 1, 5, 36, 327, 3392, 38795, 469662, 5935728, 77416352, 1035050705, 14094000938, 195075365778, 2734475097609, 38747262233793, 554199475506095, 7990492729051526, 115995691148658656, 1694340616136589743, 24882428969673439384, 367160435328847044586 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
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
FORMULA
a(n) = A291684(2n,n).
EXAMPLE
a(2) = 5: 2134, 2314, 2341, 2413, 2431.
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, 2*n, n)-`if`(n=0, 0, b(0, 2*n, n-1)):
seq(a(n), n=0..25);
MATHEMATICA
b[u_, o_, t_] := b[u, o, t] = If[u + o == 0, 1,
Sum[b[u - j, o + j - 1, j], {j, Min[t, u]}] +
Sum[b[u + j - 1, o - j, j], {j, Min[t, o]}]];
a[n_] := b[0, 2n, n] - If[n == 0, 0, b[0, 2n, n - 1]];
Table[a[n], {n, 0, 25}] (* Jean-François Alcover, Aug 30 2021, after Alois P. Heinz *)
CROSSREFS
Cf. A291684.
Bisection (even part) of A303204.
Sequence in context: A286765 A267980 A187827 * A300987 A067305 A000806
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 29 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 March 28 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)