Identifier
Values
[1] => 0
[-1] => 1
[1,2] => 0
[1,-2] => 3
[-1,2] => 1
[-1,-2] => 4
[2,1] => 1
[2,-1] => 2
[-2,1] => 2
[-2,-1] => 3
[1,2,3] => 0
[1,2,-3] => 5
[1,-2,3] => 3
[1,-2,-3] => 8
[-1,2,3] => 1
[-1,2,-3] => 6
[-1,-2,3] => 4
[-1,-2,-3] => 9
[1,3,2] => 1
[1,3,-2] => 4
[1,-3,2] => 4
[1,-3,-2] => 7
[-1,3,2] => 2
[-1,3,-2] => 5
[-1,-3,2] => 5
[-1,-3,-2] => 8
[2,1,3] => 1
[2,1,-3] => 6
[2,-1,3] => 2
[2,-1,-3] => 7
[-2,1,3] => 2
[-2,1,-3] => 7
[-2,-1,3] => 3
[-2,-1,-3] => 8
[2,3,1] => 2
[2,3,-1] => 3
[2,-3,1] => 5
[2,-3,-1] => 6
[-2,3,1] => 3
[-2,3,-1] => 4
[-2,-3,1] => 6
[-2,-3,-1] => 7
[3,1,2] => 2
[3,1,-2] => 5
[3,-1,2] => 3
[3,-1,-2] => 6
[-3,1,2] => 3
[-3,1,-2] => 6
[-3,-1,2] => 4
[-3,-1,-2] => 7
[3,2,1] => 3
[3,2,-1] => 4
[3,-2,1] => 4
[3,-2,-1] => 5
[-3,2,1] => 4
[-3,2,-1] => 5
[-3,-2,1] => 5
[-3,-2,-1] => 6
[1,2,3,4] => 0
[1,2,3,-4] => 7
[1,2,-3,4] => 5
[1,2,-3,-4] => 12
[1,-2,3,4] => 3
[1,-2,3,-4] => 10
[1,-2,-3,4] => 8
[1,-2,-3,-4] => 15
[-1,2,3,4] => 1
[-1,2,3,-4] => 8
[-1,2,-3,4] => 6
[-1,2,-3,-4] => 13
[-1,-2,3,4] => 4
[-1,-2,3,-4] => 11
[-1,-2,-3,4] => 9
[-1,-2,-3,-4] => 16
[1,2,4,3] => 1
[1,2,4,-3] => 6
[1,2,-4,3] => 6
[1,2,-4,-3] => 11
[1,-2,4,3] => 4
[1,-2,4,-3] => 9
[1,-2,-4,3] => 9
[1,-2,-4,-3] => 14
[-1,2,4,3] => 2
[-1,2,4,-3] => 7
[-1,2,-4,3] => 7
[-1,2,-4,-3] => 12
[-1,-2,4,3] => 5
[-1,-2,4,-3] => 10
[-1,-2,-4,3] => 10
[-1,-2,-4,-3] => 15
[1,3,2,4] => 1
[1,3,2,-4] => 8
[1,3,-2,4] => 4
[1,3,-2,-4] => 11
[1,-3,2,4] => 4
[1,-3,2,-4] => 11
[1,-3,-2,4] => 7
[1,-3,-2,-4] => 14
[-1,3,2,4] => 2
[-1,3,2,-4] => 9
[-1,3,-2,4] => 5
>>> Load all 1255 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 number of B-inversions of a signed permutation.
The number of B-inversions of a signed permutation $\sigma$ of length $n$ is
$$ \operatorname{inv}_B(\sigma) = \big|\{ 1 \leq i < j \leq n \mid \sigma(i) > \sigma(j) \}\big| + \big|\{ 1 \leq i \leq j \leq n \mid \sigma(-i) > \sigma(j) \}\big|, $$
see [1, Eq. (8.2)]. According to [1, Eq. (8.4)], this is the Coxeter length of $\sigma$.
The number of B-inversions of a signed permutation $\sigma$ of length $n$ is
$$ \operatorname{inv}_B(\sigma) = \big|\{ 1 \leq i < j \leq n \mid \sigma(i) > \sigma(j) \}\big| + \big|\{ 1 \leq i \leq j \leq n \mid \sigma(-i) > \sigma(j) \}\big|, $$
see [1, Eq. (8.2)]. According to [1, Eq. (8.4)], this is the Coxeter length of $\sigma$.
References
[1] Björner, A., Brenti, F. Combinatorics of Coxeter groups MathSciNet:2133266
Code
def statistic(pi):
pi = list(pi)
n = len(pi)
return (sum(1 for i in range(n) for j in range(i+1,n) if pi[i] > pi[j]) +
sum(1 for i in range(n) for j in range(i ,n) if -pi[i] > pi[j]))
Created
Jun 21, 2019 at 14:03 by Christian Stump
Updated
Jan 08, 2023 at 10:53 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!