Identifier
Values
[1] => 0
[-1] => 1
[1,2] => 0
[1,-2] => 1
[-1,2] => 1
[-1,-2] => 2
[2,1] => 2
[2,-1] => 3
[-2,1] => 3
[-2,-1] => 4
[1,2,3] => 0
[1,2,-3] => 1
[1,-2,3] => 1
[1,-2,-3] => 2
[-1,2,3] => 1
[-1,2,-3] => 2
[-1,-2,3] => 2
[-1,-2,-3] => 3
[1,3,2] => 4
[1,3,-2] => 5
[1,-3,2] => 5
[1,-3,-2] => 6
[-1,3,2] => 5
[-1,3,-2] => 6
[-1,-3,2] => 6
[-1,-3,-2] => 7
[2,1,3] => 2
[2,1,-3] => 3
[2,-1,3] => 3
[2,-1,-3] => 4
[-2,1,3] => 3
[-2,1,-3] => 4
[-2,-1,3] => 4
[-2,-1,-3] => 5
[2,3,1] => 6
[2,3,-1] => 7
[2,-3,1] => 7
[2,-3,-1] => 8
[-2,3,1] => 7
[-2,3,-1] => 8
[-2,-3,1] => 8
[-2,-3,-1] => 9
[3,1,2] => 2
[3,1,-2] => 3
[3,-1,2] => 3
[3,-1,-2] => 4
[-3,1,2] => 3
[-3,1,-2] => 4
[-3,-1,2] => 4
[-3,-1,-2] => 5
[3,2,1] => 4
[3,2,-1] => 5
[3,-2,1] => 5
[3,-2,-1] => 6
[-3,2,1] => 5
[-3,2,-1] => 6
[-3,-2,1] => 6
[-3,-2,-1] => 7
[1,2,3,4] => 0
[1,2,3,-4] => 1
[1,2,-3,4] => 1
[1,2,-3,-4] => 2
[1,-2,3,4] => 1
[1,-2,3,-4] => 2
[1,-2,-3,4] => 2
[1,-2,-3,-4] => 3
[-1,2,3,4] => 1
[-1,2,3,-4] => 2
[-1,2,-3,4] => 2
[-1,2,-3,-4] => 3
[-1,-2,3,4] => 2
[-1,-2,3,-4] => 3
[-1,-2,-3,4] => 3
[-1,-2,-3,-4] => 4
[1,2,4,3] => 6
[1,2,4,-3] => 7
[1,2,-4,3] => 7
[1,2,-4,-3] => 8
[1,-2,4,3] => 7
[1,-2,4,-3] => 8
[1,-2,-4,3] => 8
[1,-2,-4,-3] => 9
[-1,2,4,3] => 7
[-1,2,4,-3] => 8
[-1,2,-4,3] => 8
[-1,2,-4,-3] => 9
[-1,-2,4,3] => 8
[-1,-2,4,-3] => 9
[-1,-2,-4,3] => 9
[-1,-2,-4,-3] => 10
[1,3,2,4] => 4
[1,3,2,-4] => 5
[1,3,-2,4] => 5
[1,3,-2,-4] => 6
[1,-3,2,4] => 5
[1,-3,2,-4] => 6
[1,-3,-2,4] => 6
[1,-3,-2,-4] => 7
[-1,3,2,4] => 5
[-1,3,2,-4] => 6
[-1,3,-2,4] => 6
>>> Load all 442 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 flag Denert index of a signed permutation.
The flag Denert index of a signed permutation $\sigma$ is:
$$fden(\sigma) = \operatorname{neg}(\sigma) + 2 \cdot den_B(\sigma),$$
where $den_B(\sigma) = den(perm(\sigma))$ is the Denert index of the associated permutation to $\sigma$.
The flag Denert index of a signed permutation $\sigma$ is:
$$fden(\sigma) = \operatorname{neg}(\sigma) + 2 \cdot den_B(\sigma),$$
where $den_B(\sigma) = den(perm(\sigma))$ is the Denert index of the associated permutation to $\sigma$.
References
[1] Fire, M. Statistics on Wreath Products arXiv:math/0409421
Code
def statistic(pi):
n = pi.parent().rank()
A = sum(1 for l,k in Subsets(range(n),2) if abs(pi[k]) < abs(pi[l]) <= k+1 )
B = sum(1 for l,k in Subsets(range(n),2) if abs(pi[l]) <= k+1 < abs(pi[k]) )
C = sum(1 for l,k in Subsets(range(n),2) if k+1 < abs(pi[k]) < abs(pi[l]) )
den_B = A+B+C
neg = len([i for i in pi if i < 0])
return neg + 2 * den_B
Created
Jul 20, 2022 at 08:55 by Dennis Jahn
Updated
Jul 20, 2022 at 08:55 by Dennis Jahn
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!