Identifier
- St001671: Permutations ⟶ ℤ
Values
[1] => 0
[1,2] => 0
[2,1] => 1
[1,2,3] => 0
[1,3,2] => 2
[2,1,3] => 1
[2,3,1] => 3
[3,1,2] => 2
[3,2,1] => 1
[1,2,3,4] => 0
[1,2,4,3] => 3
[1,3,2,4] => 2
[1,3,4,2] => 5
[1,4,2,3] => 3
[1,4,3,2] => 2
[2,1,3,4] => 1
[2,1,4,3] => 4
[2,3,1,4] => 3
[2,3,4,1] => 6
[2,4,1,3] => 4
[2,4,3,1] => 3
[3,1,2,4] => 2
[3,1,4,2] => 5
[3,2,1,4] => 1
[3,2,4,1] => 4
[3,4,1,2] => 4
[3,4,2,1] => 3
[4,1,2,3] => 3
[4,1,3,2] => 2
[4,2,1,3] => 2
[4,2,3,1] => 1
[4,3,1,2] => 5
[4,3,2,1] => 4
[1,2,3,4,5] => 0
[1,2,3,5,4] => 4
[1,2,4,3,5] => 3
[1,2,4,5,3] => 7
[1,2,5,3,4] => 4
[1,2,5,4,3] => 3
[1,3,2,4,5] => 2
[1,3,2,5,4] => 6
[1,3,4,2,5] => 5
[1,3,4,5,2] => 9
[1,3,5,2,4] => 6
[1,3,5,4,2] => 5
[1,4,2,3,5] => 3
[1,4,2,5,3] => 7
[1,4,3,2,5] => 2
[1,4,3,5,2] => 6
[1,4,5,2,3] => 6
[1,4,5,3,2] => 5
[1,5,2,3,4] => 4
[1,5,2,4,3] => 3
[1,5,3,2,4] => 3
[1,5,3,4,2] => 2
[1,5,4,2,3] => 7
[1,5,4,3,2] => 6
[2,1,3,4,5] => 1
[2,1,3,5,4] => 5
[2,1,4,3,5] => 4
[2,1,4,5,3] => 8
[2,1,5,3,4] => 5
[2,1,5,4,3] => 4
[2,3,1,4,5] => 3
[2,3,1,5,4] => 7
[2,3,4,1,5] => 6
[2,3,4,5,1] => 10
[2,3,5,1,4] => 7
[2,3,5,4,1] => 6
[2,4,1,3,5] => 4
[2,4,1,5,3] => 8
[2,4,3,1,5] => 3
[2,4,3,5,1] => 7
[2,4,5,1,3] => 7
[2,4,5,3,1] => 6
[2,5,1,3,4] => 5
[2,5,1,4,3] => 4
[2,5,3,1,4] => 4
[2,5,3,4,1] => 3
[2,5,4,1,3] => 8
[2,5,4,3,1] => 7
[3,1,2,4,5] => 2
[3,1,2,5,4] => 6
[3,1,4,2,5] => 5
[3,1,4,5,2] => 9
[3,1,5,2,4] => 6
[3,1,5,4,2] => 5
[3,2,1,4,5] => 1
[3,2,1,5,4] => 5
[3,2,4,1,5] => 4
[3,2,4,5,1] => 8
[3,2,5,1,4] => 5
[3,2,5,4,1] => 4
[3,4,1,2,5] => 4
[3,4,1,5,2] => 8
[3,4,2,1,5] => 3
[3,4,2,5,1] => 7
[3,4,5,1,2] => 7
[3,4,5,2,1] => 6
[3,5,1,2,4] => 5
[3,5,1,4,2] => 4
>>> Load all 1200 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
Haglund's hag of a permutation.
Let $edif$ be the sum of the differences of exceedence tops and bottoms, let $\pi_E$ the subsequence of exceedence tops and let $\pi_N$ be the subsequence of non-exceedence tops. Finally, let $L$ be the number of pairs of indices $k < i$ such that $\pi_k \leq i < \pi_i$.
Then $hag(\pi) = edif + inv(\pi_E) - inv(\pi_N) + L$, where $inv$ denotes the number of inversions of a word.
Let $edif$ be the sum of the differences of exceedence tops and bottoms, let $\pi_E$ the subsequence of exceedence tops and let $\pi_N$ be the subsequence of non-exceedence tops. Finally, let $L$ be the number of pairs of indices $k < i$ such that $\pi_k \leq i < \pi_i$.
Then $hag(\pi) = edif + inv(\pi_E) - inv(\pi_N) + L$, where $inv$ denotes the number of inversions of a word.
References
[1] Wilson, M. C. An interesting new Mahonian permutation statistic MathSciNet:2745700
Code
def statistic(pi):
standard = sage.combinat.permutation.to_standard
pi_E = standard([pi_i for i, pi_i in enumerate(pi, 1) if i < pi_i])
pi_N = standard([pi_i for i, pi_i in enumerate(pi, 1) if i >= pi_i])
edif = sum(pi_i - i for i, pi_i in enumerate(pi, 1) if i < pi_i)
L = sum(sum(1 for k in range(1, i) if pi(k) <= i)
for i, pi_i in enumerate(pi, 1) if i < pi_i)
return edif + pi_E.number_of_inversions() - pi_N.number_of_inversions() + L
Created
Jan 18, 2021 at 19:10 by Martin Rubey
Updated
Jan 18, 2021 at 19:10 by Martin Rubey
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!