Identifier
- St000224: Permutations ⟶ ℤ
Values
[1] => 0
[1,2] => 0
[2,1] => 1
[1,2,3] => 0
[1,3,2] => 1
[2,1,3] => 1
[2,3,1] => 2
[3,1,2] => 3
[3,2,1] => 2
[1,2,3,4] => 0
[1,2,4,3] => 1
[1,3,2,4] => 1
[1,3,4,2] => 2
[1,4,2,3] => 3
[1,4,3,2] => 2
[2,1,3,4] => 1
[2,1,4,3] => 2
[2,3,1,4] => 2
[2,3,4,1] => 3
[2,4,1,3] => 4
[2,4,3,1] => 3
[3,1,2,4] => 3
[3,1,4,2] => 4
[3,2,1,4] => 2
[3,2,4,1] => 3
[3,4,1,2] => 4
[3,4,2,1] => 5
[4,1,2,3] => 6
[4,1,3,2] => 4
[4,2,1,3] => 5
[4,2,3,1] => 3
[4,3,1,2] => 5
[4,3,2,1] => 4
[1,2,3,4,5] => 0
[1,2,3,5,4] => 1
[1,2,4,3,5] => 1
[1,2,4,5,3] => 2
[1,2,5,3,4] => 3
[1,2,5,4,3] => 2
[1,3,2,4,5] => 1
[1,3,2,5,4] => 2
[1,3,4,2,5] => 2
[1,3,4,5,2] => 3
[1,3,5,2,4] => 4
[1,3,5,4,2] => 3
[1,4,2,3,5] => 3
[1,4,2,5,3] => 4
[1,4,3,2,5] => 2
[1,4,3,5,2] => 3
[1,4,5,2,3] => 4
[1,4,5,3,2] => 5
[1,5,2,3,4] => 6
[1,5,2,4,3] => 4
[1,5,3,2,4] => 5
[1,5,3,4,2] => 3
[1,5,4,2,3] => 5
[1,5,4,3,2] => 4
[2,1,3,4,5] => 1
[2,1,3,5,4] => 2
[2,1,4,3,5] => 2
[2,1,4,5,3] => 3
[2,1,5,3,4] => 4
[2,1,5,4,3] => 3
[2,3,1,4,5] => 2
[2,3,1,5,4] => 3
[2,3,4,1,5] => 3
[2,3,4,5,1] => 4
[2,3,5,1,4] => 5
[2,3,5,4,1] => 4
[2,4,1,3,5] => 4
[2,4,1,5,3] => 5
[2,4,3,1,5] => 3
[2,4,3,5,1] => 4
[2,4,5,1,3] => 5
[2,4,5,3,1] => 6
[2,5,1,3,4] => 7
[2,5,1,4,3] => 5
[2,5,3,1,4] => 6
[2,5,3,4,1] => 4
[2,5,4,1,3] => 6
[2,5,4,3,1] => 5
[3,1,2,4,5] => 3
[3,1,2,5,4] => 4
[3,1,4,2,5] => 4
[3,1,4,5,2] => 5
[3,1,5,2,4] => 6
[3,1,5,4,2] => 5
[3,2,1,4,5] => 2
[3,2,1,5,4] => 3
[3,2,4,1,5] => 3
[3,2,4,5,1] => 4
[3,2,5,1,4] => 5
[3,2,5,4,1] => 4
[3,4,1,2,5] => 4
[3,4,1,5,2] => 5
[3,4,2,1,5] => 5
[3,4,2,5,1] => 6
[3,4,5,1,2] => 7
[3,4,5,2,1] => 6
[3,5,1,2,4] => 7
[3,5,1,4,2] => 5
>>> Load all 873 entries. <<<
search for individual values
searching the database for the individual values of this statistic
/
search for generating function
searching the database for statistics with the same generating function
Description
The sorting index of a permutation.
The sorting index counts the total distance that symbols move during a selection sort of a permutation. This sorting algorithm swaps symbol n into index n and then recursively sorts the first n-1 symbols.
Compare this to St000018The number of inversions of a permutation., the number of inversions of a permutation, which is also the total distance that elements move during a bubble sort.
The sorting index counts the total distance that symbols move during a selection sort of a permutation. This sorting algorithm swaps symbol n into index n and then recursively sorts the first n-1 symbols.
Compare this to St000018The number of inversions of a permutation., the number of inversions of a permutation, which is also the total distance that elements move during a bubble sort.
References
[1] Triangle of Mahonian numbers T(n,k): coefficients in expansion of Product_i=0..n-1 (1 + x + ... + x^i), where k ranges from 0 to A000217(n-1). OEIS:A008302
[2] Wilson, M. C. An interesting new Mahonian permutation statistic MathSciNet:2745700
[3] Petersen, T. K. The sorting index MathSciNet:2822205
[2] Wilson, M. C. An interesting new Mahonian permutation statistic MathSciNet:2745700
[3] Petersen, T. K. The sorting index MathSciNet:2822205
Code
def statistic(pi):
n = len(pi)
if n == 0:
return 0
else:
x = pi.index(n) + 1
if x == n:
return statistic(pi[:n-1])
else:
return (n-x) + statistic(Permutation([(n, x)])*pi)
Created
Sep 30, 2014 at 09:17 by Martin Rubey
Updated
Jun 24, 2020 at 21:07 by Mark Wilson
searching the database
Sorry, this statistic was not found in the database
or
add this statistic to the database – it's very simple and we need your support!