Identifier
Values
[1] => 1
[-1] => 1
[1,2] => 1
[1,-2] => 2
[-1,2] => 1
[-1,-2] => 1
[2,1] => 2
[2,-1] => 1
[-2,1] => 3
[-2,-1] => 1
[1,2,3] => 1
[1,2,-3] => 3
[1,-2,3] => 4
[1,-2,-3] => 6
[-1,2,3] => 1
[-1,2,-3] => 2
[-1,-2,3] => 1
[-1,-2,-3] => 1
[1,3,2] => 3
[1,3,-2] => 3
[1,-3,2] => 6
[1,-3,-2] => 4
[-1,3,2] => 2
[-1,3,-2] => 1
[-1,-3,2] => 3
[-1,-3,-2] => 1
[2,1,3] => 3
[2,1,-3] => 9
[2,-1,3] => 1
[2,-1,-3] => 2
[-2,1,3] => 5
[-2,1,-3] => 8
[-2,-1,3] => 1
[-2,-1,-3] => 1
[2,3,1] => 3
[2,3,-1] => 1
[2,-3,1] => 8
[2,-3,-1] => 2
[-2,3,1] => 8
[-2,3,-1] => 2
[-2,-3,1] => 10
[-2,-3,-1] => 2
[3,1,2] => 6
[3,1,-2] => 8
[3,-1,2] => 2
[3,-1,-2] => 1
[-3,1,2] => 10
[-3,1,-2] => 10
[-3,-1,2] => 3
[-3,-1,-2] => 1
[3,2,1] => 8
[3,2,-1] => 3
[3,-2,1] => 6
[3,-2,-1] => 1
[-3,2,1] => 15
[-3,2,-1] => 5
[-3,-2,1] => 7
[-3,-2,-1] => 1
[1,2,3,4] => 1
[1,2,3,-4] => 4
[1,2,-3,4] => 10
[1,2,-3,-4] => 20
[1,-2,3,4] => 6
[1,-2,3,-4] => 16
[1,-2,-3,4] => 15
[1,-2,-3,-4] => 20
[-1,2,3,4] => 1
[-1,2,3,-4] => 3
[-1,2,-3,4] => 4
[-1,2,-3,-4] => 6
[-1,-2,3,4] => 1
[-1,-2,3,-4] => 2
[-1,-2,-3,4] => 1
[-1,-2,-3,-4] => 1
[1,2,4,3] => 4
[1,2,4,-3] => 6
[1,2,-4,3] => 10
[1,2,-4,-3] => 10
[1,-2,4,3] => 16
[1,-2,4,-3] => 13
[1,-2,-4,3] => 29
[1,-2,-4,-3] => 16
[-1,2,4,3] => 3
[-1,2,4,-3] => 3
[-1,2,-4,3] => 6
[-1,2,-4,-3] => 4
[-1,-2,4,3] => 2
[-1,-2,4,-3] => 1
[-1,-2,-4,3] => 3
[-1,-2,-4,-3] => 1
[1,3,2,4] => 4
[1,3,2,-4] => 16
[1,3,-2,4] => 5
[1,3,-2,-4] => 13
[1,-3,2,4] => 15
[1,-3,2,-4] => 33
[1,-3,-2,4] => 11
[1,-3,-2,-4] => 14
[-1,3,2,4] => 3
[-1,3,2,-4] => 9
[-1,3,-2,4] => 1
>>> 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
The number of facets of a certain subword complex associated with the signed permutation.
Let $Q=[1,\dots,n,1,\dots,n,\dots,1,\dots,n]$ be the word of length $n^2$, and let $\pi$ be a signed permutation. Then this statistic yields the number of facets of the subword complex $\Delta(Q, \pi)$.
Let $Q=[1,\dots,n,1,\dots,n,\dots,1,\dots,n]$ be the word of length $n^2$, and let $\pi$ be a signed permutation. Then this statistic yields the number of facets of the subword complex $\Delta(Q, \pi)$.
Code
def statistic(pi):
n = len(list(pi))
S = SignedPermutations(n)
Q = S.w0.coxeter_sorting_word(S.coxeter_element())
return len(SubwordComplex(Q, pi).facets())
Created
Feb 05, 2022 at 17:47 by Martin Rubey
Updated
Feb 05, 2022 at 17:47 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!