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!)
A350158 The distribution of the distance from the first weak subcedance to 1 on permutations. 1

%I #16 Dec 17 2021 20:55:08

%S 1,2,0,5,1,0,17,5,2,0,75,23,16,6,0,407,119,104,66,24,0,2619,719,688,

%T 558,336,120,0,19487,5039,4976,4554,3504,2040,720,0,164571,40319,

%U 40192,38862,34176,25320,14400,5040,0,1555007,362879,362624,358506,338304,287880,207360,115920,40320,0

%N The distribution of the distance from the first weak subcedance to 1 on permutations.

%C Triangular array read by rows. For 0 <= k <= n-1, T(n,k) is the number of permutations of [n] for which the difference between the position of 1 and the position of the first weak subcedance is k. A weak subcedance of a permutation pi is an entry pi(i) such that pi(i) <= i. See link.

%H David Callan, <a href="/A350158/a350158.pdf">The distribution of the distance from the first weak subcedance to 1 on permutations</a>

%F T(1,0) = 1, T(n,0) = 2*(n-1)! + Sum_{j=1..n-2} j^(n-j-1)*j! for n >= 2, T(n,k) = (n-1)! - k^(n-k-1)*k! for 1 <= k <= n-1.

%e Triangle T(n,k) begins:

%e 1;

%e 2, 0;

%e 5, 1, 0;

%e 17, 5, 2, 0;

%e 75, 23, 16, 6, 0;

%e 407, 119, 104, 66, 24, 0;

%e 2619, 719, 688, 558, 336, 120, 0;

%e 19487, 5039, 4976, 4554, 3504, 2040, 720, 0;

%e 164571, 40319, 40192, 38862, 34176, 25320, 14400, 5040, 0;

%e ...

%t a[1, 0] = 1;

%t a[n_, 0] /; n >= 2 := 2 (n - 1)! + Sum[k^(n - k - 1) k!, {k, 1, n - 2}];

%t a[n_, k_] /; n > k >= 1 := (n - 1)! - k^(n - k - 1) k!;

%t Flatten[Table[a[n, k], {n, 10}, {k, 0, n - 1}]]

%Y Cf. A129591 is the first column.

%Y Row sums give A000142.

%K nonn,tabl

%O 1,2

%A _David Callan_, Dec 17 2021

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 September 12 17:08 EDT 2024. Contains 375853 sequences. (Running on oeis4.)