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!)
A303203 Number of permutations p of [2n+1] such that 0p has a nonincreasing jump sequence beginning with n+1. 3

%I #14 Sep 01 2021 03:40:29

%S 1,2,12,98,988,10872,129520,1609176,20786804,274792342,3719296036,

%T 51119572738,712918642042,10055531355652,143287150725298,

%U 2058368140071146,29796314629826814,434051906728752164,6359063811707227298,93635249115751389952,1385028309353547034876

%N Number of permutations p of [2n+1] such that 0p has a nonincreasing jump sequence beginning with n+1.

%C 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.

%H Alois P. Heinz, <a href="/A303203/b303203.txt">Table of n, a(n) for n = 0..250</a>

%F a(n) = A291684(2n+1,n+1).

%p b:= proc(u, o, t) option remember; `if`(u+o=0, 1,

%p add(b(sort([u-j, o+j-1])[], j), j=1..min(t, u))+

%p add(b(sort([u+j-1, o-j])[], j), j=1..min(t, o)))

%p end:

%p a:= n-> b(0, 2*n+1, n+1)-b(0, 2*n+1, n):

%p seq(a(n), n=0..25);

%t b[u_, o_, t_] := b[u, o, t] = If[u+o == 0, 1,

%t Sum[b[u-j, o+j-1, j], {j, 1, Min[t, u]}] +

%t Sum[b[u+j-1, o-j, j], {j, 1, Min[t, o]}]];

%t a[n_] := b[0, 2n+1, n+1] - b[0, 2n+1, n];

%t a /@ Range[0, 25] (* _Jean-François Alcover_, Sep 01 2021, after _Alois P. Heinz_ *)

%Y Bisection (odd part) of A303204.

%Y Cf. A291684.

%K nonn

%O 0,2

%A _Alois P. Heinz_, Apr 19 2018

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 August 12 04:50 EDT 2024. Contains 375085 sequences. (Running on oeis4.)