Your data matches 33 different statistics following compositions of up to 3 maps.
(click to perform a complete search on your data)
St000224: Permutations ⟶ ℤResult quality: 100% values known / values provided: 100%distinct values known / distinct values provided: 100%
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
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 [[St000018]], the number of inversions of a permutation, which is also the total distance that elements move during a bubble sort.
Mp00170: Permutations to signed permutationSigned permutations
St001821: Signed permutations ⟶ ℤResult quality: 100% values known / values provided: 100%distinct values known / distinct values provided: 100%
Values
[1] => [1] => 0
[1,2] => [1,2] => 0
[2,1] => [2,1] => 1
[1,2,3] => [1,2,3] => 0
[1,3,2] => [1,3,2] => 1
[2,1,3] => [2,1,3] => 1
[2,3,1] => [2,3,1] => 2
[3,1,2] => [3,1,2] => 3
[3,2,1] => [3,2,1] => 2
[1,2,3,4] => [1,2,3,4] => 0
[1,2,4,3] => [1,2,4,3] => 1
[1,3,2,4] => [1,3,2,4] => 1
[1,3,4,2] => [1,3,4,2] => 2
[1,4,2,3] => [1,4,2,3] => 3
[1,4,3,2] => [1,4,3,2] => 2
[2,1,3,4] => [2,1,3,4] => 1
[2,1,4,3] => [2,1,4,3] => 2
[2,3,1,4] => [2,3,1,4] => 2
[2,3,4,1] => [2,3,4,1] => 3
[2,4,1,3] => [2,4,1,3] => 4
[2,4,3,1] => [2,4,3,1] => 3
[3,1,2,4] => [3,1,2,4] => 3
[3,1,4,2] => [3,1,4,2] => 4
[3,2,1,4] => [3,2,1,4] => 2
[3,2,4,1] => [3,2,4,1] => 3
[3,4,1,2] => [3,4,1,2] => 4
[3,4,2,1] => [3,4,2,1] => 5
[4,1,2,3] => [4,1,2,3] => 6
[4,1,3,2] => [4,1,3,2] => 4
[4,2,1,3] => [4,2,1,3] => 5
[4,2,3,1] => [4,2,3,1] => 3
[4,3,1,2] => [4,3,1,2] => 5
[4,3,2,1] => [4,3,2,1] => 4
Description
The sorting index of a signed permutation. A signed permutation $\sigma = [\sigma(1),\ldots,\sigma(n)]$ can be sorted $[1,\ldots,n]$ by signed transpositions in the following way: First move $\pm n$ to its position and swap the sign if needed, then $\pm (n-1), \pm (n-2)$ and so on. For example for $[2,-4,5,-1,-3]$ we have the swaps $$ [2,-4,5,-1,-3] \rightarrow [2,-4,-3,-1,5] \rightarrow [2,1,-3,4,5] \rightarrow [2,1,3,4,5] \rightarrow [1,2,3,4,5] $$ given by the signed transpositions $(3,5), (-2,4), (-3,3), (1,2)$. If $(i_1,j_1),\ldots,(i_n,j_n)$ is the decomposition of $\sigma$ obtained this way (including trivial transpositions) then the sorting index of $\sigma$ is defined as $$ \operatorname{sor}_B(\sigma) = \sum_{k=1}^{n-1} j_k - i_k - \chi(i_k < 0), $$ where $\chi(i_k < 0)$ is 1 if $i_k$ is negative and 0 otherwise. For $\sigma = [2,-4,5,-1,-3]$ we have $$ \operatorname{sor}_B(\sigma) = (5-3) + (4-(-2)-1) + (3-(-3)-1) + (2-1) = 13. $$
Matching statistic: St001621
Mp00087: Permutations inverse first fundamental transformationPermutations
Mp00160: Permutations graph of inversionsGraphs
Mp00266: Graphs connected vertex partitionsLattices
St001621: Lattices ⟶ ℤResult quality: 57% values known / values provided: 61%distinct values known / distinct values provided: 57%
Values
[1] => [1] => ([],1)
=> ([],1)
=> 0
[1,2] => [1,2] => ([],2)
=> ([],1)
=> 0
[2,1] => [2,1] => ([(0,1)],2)
=> ([(0,1)],2)
=> 1
[1,2,3] => [1,2,3] => ([],3)
=> ([],1)
=> 0
[1,3,2] => [1,3,2] => ([(1,2)],3)
=> ([(0,1)],2)
=> 1
[2,1,3] => [2,1,3] => ([(1,2)],3)
=> ([(0,1)],2)
=> 1
[2,3,1] => [3,1,2] => ([(0,2),(1,2)],3)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 2
[3,1,2] => [3,2,1] => ([(0,1),(0,2),(1,2)],3)
=> ([(0,1),(0,2),(0,3),(1,4),(2,4),(3,4)],5)
=> 3
[3,2,1] => [2,3,1] => ([(0,2),(1,2)],3)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 2
[1,2,3,4] => [1,2,3,4] => ([],4)
=> ([],1)
=> 0
[1,2,4,3] => [1,2,4,3] => ([(2,3)],4)
=> ([(0,1)],2)
=> 1
[1,3,2,4] => [1,3,2,4] => ([(2,3)],4)
=> ([(0,1)],2)
=> 1
[1,3,4,2] => [1,4,2,3] => ([(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 2
[1,4,2,3] => [1,4,3,2] => ([(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,4),(2,4),(3,4)],5)
=> 3
[1,4,3,2] => [1,3,4,2] => ([(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 2
[2,1,3,4] => [2,1,3,4] => ([(2,3)],4)
=> ([(0,1)],2)
=> 1
[2,1,4,3] => [2,1,4,3] => ([(0,3),(1,2)],4)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 2
[2,3,1,4] => [3,1,2,4] => ([(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 2
[2,3,4,1] => [4,1,2,3] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,5),(1,6),(2,4),(2,6),(3,4),(3,5),(4,7),(5,7),(6,7)],8)
=> ? = 3
[2,4,1,3] => [4,3,1,2] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(0,5),(1,10),(1,11),(2,8),(2,9),(2,11),(3,6),(3,7),(3,11),(4,7),(4,9),(4,10),(5,6),(5,8),(5,10),(6,12),(7,12),(8,12),(9,12),(10,12),(11,12)],13)
=> ? = 4
[2,4,3,1] => [3,4,1,2] => ([(0,2),(0,3),(1,2),(1,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,8),(1,9),(1,10),(2,6),(2,7),(2,10),(3,5),(3,7),(3,9),(4,5),(4,6),(4,8),(5,11),(6,11),(7,11),(8,11),(9,11),(10,11)],12)
=> ? = 3
[3,1,2,4] => [3,2,1,4] => ([(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,4),(2,4),(3,4)],5)
=> 3
[3,1,4,2] => [4,2,1,3] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,7),(1,8),(2,6),(2,8),(3,5),(3,8),(4,5),(4,6),(4,7),(5,9),(6,9),(7,9),(8,9)],10)
=> ? = 4
[3,2,1,4] => [2,3,1,4] => ([(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 2
[3,2,4,1] => [2,4,1,3] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,5),(1,6),(2,4),(2,6),(3,4),(3,5),(4,7),(5,7),(6,7)],8)
=> ? = 3
[3,4,1,2] => [3,1,4,2] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,5),(1,6),(2,4),(2,6),(3,4),(3,5),(4,7),(5,7),(6,7)],8)
=> ? = 4
[3,4,2,1] => [4,1,3,2] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,7),(1,8),(2,6),(2,8),(3,5),(3,8),(4,5),(4,6),(4,7),(5,9),(6,9),(7,9),(8,9)],10)
=> ? = 5
[4,1,2,3] => [4,3,2,1] => ([(0,1),(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(0,5),(0,6),(1,9),(1,11),(1,13),(2,9),(2,10),(2,12),(3,8),(3,10),(3,13),(4,8),(4,11),(4,12),(5,7),(5,12),(5,13),(6,7),(6,10),(6,11),(7,14),(8,14),(9,14),(10,14),(11,14),(12,14),(13,14)],15)
=> ? = 6
[4,1,3,2] => [3,4,2,1] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(0,5),(1,10),(1,11),(2,8),(2,9),(2,11),(3,6),(3,7),(3,11),(4,7),(4,9),(4,10),(5,6),(5,8),(5,10),(6,12),(7,12),(8,12),(9,12),(10,12),(11,12)],13)
=> ? = 4
[4,2,1,3] => [2,4,3,1] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,7),(1,8),(2,6),(2,8),(3,5),(3,8),(4,5),(4,6),(4,7),(5,9),(6,9),(7,9),(8,9)],10)
=> ? = 5
[4,2,3,1] => [2,3,4,1] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,5),(1,6),(2,4),(2,6),(3,4),(3,5),(4,7),(5,7),(6,7)],8)
=> ? = 3
[4,3,1,2] => [4,2,3,1] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(0,5),(1,10),(1,11),(2,8),(2,9),(2,11),(3,6),(3,7),(3,11),(4,7),(4,9),(4,10),(5,6),(5,8),(5,10),(6,12),(7,12),(8,12),(9,12),(10,12),(11,12)],13)
=> ? = 5
[4,3,2,1] => [3,2,4,1] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,7),(1,8),(2,6),(2,8),(3,5),(3,8),(4,5),(4,6),(4,7),(5,9),(6,9),(7,9),(8,9)],10)
=> ? = 4
Description
The number of atoms of a lattice. An element of a lattice is an '''atom''' if it covers the least element.
Mp00087: Permutations inverse first fundamental transformationPermutations
Mp00065: Permutations permutation posetPosets
Mp00195: Posets order idealsLattices
St001877: Lattices ⟶ ℤResult quality: 43% values known / values provided: 48%distinct values known / distinct values provided: 43%
Values
[1] => [1] => ([],1)
=> ([(0,1)],2)
=> ? = 0
[1,2] => [1,2] => ([(0,1)],2)
=> ([(0,2),(2,1)],3)
=> 0
[2,1] => [2,1] => ([],2)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 1
[1,2,3] => [1,2,3] => ([(0,2),(2,1)],3)
=> ([(0,3),(2,1),(3,2)],4)
=> 0
[1,3,2] => [1,3,2] => ([(0,1),(0,2)],3)
=> ([(0,3),(1,4),(2,4),(3,1),(3,2)],5)
=> 1
[2,1,3] => [2,1,3] => ([(0,2),(1,2)],3)
=> ([(0,2),(0,3),(2,4),(3,4),(4,1)],5)
=> 1
[2,3,1] => [3,1,2] => ([(1,2)],3)
=> ([(0,2),(0,3),(1,5),(2,4),(3,1),(3,4),(4,5)],6)
=> 2
[3,1,2] => [3,2,1] => ([],3)
=> ([(0,1),(0,2),(0,3),(1,5),(1,6),(2,4),(2,6),(3,4),(3,5),(4,7),(5,7),(6,7)],8)
=> ? = 3
[3,2,1] => [2,3,1] => ([(1,2)],3)
=> ([(0,2),(0,3),(1,5),(2,4),(3,1),(3,4),(4,5)],6)
=> 2
[1,2,3,4] => [1,2,3,4] => ([(0,3),(2,1),(3,2)],4)
=> ([(0,4),(2,3),(3,1),(4,2)],5)
=> 0
[1,2,4,3] => [1,2,4,3] => ([(0,3),(3,1),(3,2)],4)
=> ([(0,3),(1,5),(2,5),(3,4),(4,1),(4,2)],6)
=> 1
[1,3,2,4] => [1,3,2,4] => ([(0,1),(0,2),(1,3),(2,3)],4)
=> ([(0,4),(1,5),(2,5),(4,1),(4,2),(5,3)],6)
=> 1
[1,3,4,2] => [1,4,2,3] => ([(0,2),(0,3),(3,1)],4)
=> ([(0,4),(1,6),(2,5),(3,1),(3,5),(4,2),(4,3),(5,6)],7)
=> 2
[1,4,2,3] => [1,4,3,2] => ([(0,1),(0,2),(0,3)],4)
=> ([(0,4),(1,6),(1,7),(2,5),(2,7),(3,5),(3,6),(4,1),(4,2),(4,3),(5,8),(6,8),(7,8)],9)
=> ? = 3
[1,4,3,2] => [1,3,4,2] => ([(0,2),(0,3),(3,1)],4)
=> ([(0,4),(1,6),(2,5),(3,1),(3,5),(4,2),(4,3),(5,6)],7)
=> 2
[2,1,3,4] => [2,1,3,4] => ([(0,3),(1,3),(3,2)],4)
=> ([(0,2),(0,3),(2,5),(3,5),(4,1),(5,4)],6)
=> 1
[2,1,4,3] => [2,1,4,3] => ([(0,2),(0,3),(1,2),(1,3)],4)
=> ([(0,3),(0,4),(1,5),(2,5),(3,6),(4,6),(6,1),(6,2)],7)
=> 2
[2,3,1,4] => [3,1,2,4] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,3),(0,4),(2,6),(3,5),(4,2),(4,5),(5,6),(6,1)],7)
=> 2
[2,3,4,1] => [4,1,2,3] => ([(1,2),(2,3)],4)
=> ([(0,2),(0,4),(1,6),(2,5),(3,1),(3,7),(4,3),(4,5),(5,7),(7,6)],8)
=> ? = 3
[2,4,1,3] => [4,3,1,2] => ([(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,5),(1,6),(2,7),(2,9),(3,7),(3,8),(4,1),(4,8),(4,9),(5,11),(6,11),(7,10),(8,5),(8,10),(9,6),(9,10),(10,11)],12)
=> ? = 4
[2,4,3,1] => [3,4,1,2] => ([(0,3),(1,2)],4)
=> ([(0,3),(0,4),(1,7),(2,6),(3,2),(3,5),(4,1),(4,5),(5,6),(5,7),(6,8),(7,8)],9)
=> ? = 3
[3,1,2,4] => [3,2,1,4] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(2,6),(2,7),(3,5),(3,7),(4,5),(4,6),(5,8),(6,8),(7,8),(8,1)],9)
=> ? = 3
[3,1,4,2] => [4,2,1,3] => ([(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,7),(2,6),(2,8),(3,5),(3,8),(4,5),(4,6),(5,9),(6,9),(8,1),(8,9),(9,7)],10)
=> ? = 4
[3,2,1,4] => [2,3,1,4] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,3),(0,4),(2,6),(3,5),(4,2),(4,5),(5,6),(6,1)],7)
=> 2
[3,2,4,1] => [2,4,1,3] => ([(0,3),(1,2),(1,3)],4)
=> ([(0,3),(0,4),(1,6),(2,5),(3,7),(4,2),(4,7),(5,6),(7,1),(7,5)],8)
=> ? = 3
[3,4,1,2] => [3,1,4,2] => ([(0,3),(1,2),(1,3)],4)
=> ([(0,3),(0,4),(1,6),(2,5),(3,7),(4,2),(4,7),(5,6),(7,1),(7,5)],8)
=> ? = 4
[3,4,2,1] => [4,1,3,2] => ([(1,2),(1,3)],4)
=> ([(0,3),(0,4),(1,6),(1,8),(2,6),(2,7),(3,5),(4,1),(4,2),(4,5),(5,7),(5,8),(6,9),(7,9),(8,9)],10)
=> ? = 5
[4,1,2,3] => [4,3,2,1] => ([],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,8),(1,9),(1,10),(2,6),(2,7),(2,10),(3,5),(3,7),(3,9),(4,5),(4,6),(4,8),(5,11),(5,14),(6,11),(6,12),(7,11),(7,13),(8,12),(8,14),(9,13),(9,14),(10,12),(10,13),(11,15),(12,15),(13,15),(14,15)],16)
=> ? = 6
[4,1,3,2] => [3,4,2,1] => ([(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,5),(1,6),(2,7),(2,9),(3,7),(3,8),(4,1),(4,8),(4,9),(5,11),(6,11),(7,10),(8,5),(8,10),(9,6),(9,10),(10,11)],12)
=> ? = 4
[4,2,1,3] => [2,4,3,1] => ([(1,2),(1,3)],4)
=> ([(0,3),(0,4),(1,6),(1,8),(2,6),(2,7),(3,5),(4,1),(4,2),(4,5),(5,7),(5,8),(6,9),(7,9),(8,9)],10)
=> ? = 5
[4,2,3,1] => [2,3,4,1] => ([(1,2),(2,3)],4)
=> ([(0,2),(0,4),(1,6),(2,5),(3,1),(3,7),(4,3),(4,5),(5,7),(7,6)],8)
=> ? = 3
[4,3,1,2] => [4,2,3,1] => ([(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,5),(1,6),(2,7),(2,9),(3,7),(3,8),(4,1),(4,8),(4,9),(5,11),(6,11),(7,10),(8,5),(8,10),(9,6),(9,10),(10,11)],12)
=> ? = 5
[4,3,2,1] => [3,2,4,1] => ([(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,7),(2,6),(2,8),(3,5),(3,8),(4,5),(4,6),(5,9),(6,9),(8,1),(8,9),(9,7)],10)
=> ? = 4
Description
Number of indecomposable injective modules with projective dimension 2.
Matching statistic: St001875
Mp00087: Permutations inverse first fundamental transformationPermutations
Mp00160: Permutations graph of inversionsGraphs
Mp00266: Graphs connected vertex partitionsLattices
St001875: Lattices ⟶ ℤResult quality: 29% values known / values provided: 30%distinct values known / distinct values provided: 29%
Values
[1] => [1] => ([],1)
=> ([],1)
=> ? = 0 + 1
[1,2] => [1,2] => ([],2)
=> ([],1)
=> ? = 0 + 1
[2,1] => [2,1] => ([(0,1)],2)
=> ([(0,1)],2)
=> ? = 1 + 1
[1,2,3] => [1,2,3] => ([],3)
=> ([],1)
=> ? = 0 + 1
[1,3,2] => [1,3,2] => ([(1,2)],3)
=> ([(0,1)],2)
=> ? = 1 + 1
[2,1,3] => [2,1,3] => ([(1,2)],3)
=> ([(0,1)],2)
=> ? = 1 + 1
[2,3,1] => [3,1,2] => ([(0,2),(1,2)],3)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 3 = 2 + 1
[3,1,2] => [3,2,1] => ([(0,1),(0,2),(1,2)],3)
=> ([(0,1),(0,2),(0,3),(1,4),(2,4),(3,4)],5)
=> 4 = 3 + 1
[3,2,1] => [2,3,1] => ([(0,2),(1,2)],3)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 3 = 2 + 1
[1,2,3,4] => [1,2,3,4] => ([],4)
=> ([],1)
=> ? = 0 + 1
[1,2,4,3] => [1,2,4,3] => ([(2,3)],4)
=> ([(0,1)],2)
=> ? = 1 + 1
[1,3,2,4] => [1,3,2,4] => ([(2,3)],4)
=> ([(0,1)],2)
=> ? = 1 + 1
[1,3,4,2] => [1,4,2,3] => ([(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 3 = 2 + 1
[1,4,2,3] => [1,4,3,2] => ([(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,4),(2,4),(3,4)],5)
=> 4 = 3 + 1
[1,4,3,2] => [1,3,4,2] => ([(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 3 = 2 + 1
[2,1,3,4] => [2,1,3,4] => ([(2,3)],4)
=> ([(0,1)],2)
=> ? = 1 + 1
[2,1,4,3] => [2,1,4,3] => ([(0,3),(1,2)],4)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 3 = 2 + 1
[2,3,1,4] => [3,1,2,4] => ([(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 3 = 2 + 1
[2,3,4,1] => [4,1,2,3] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,5),(1,6),(2,4),(2,6),(3,4),(3,5),(4,7),(5,7),(6,7)],8)
=> ? = 3 + 1
[2,4,1,3] => [4,3,1,2] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(0,5),(1,10),(1,11),(2,8),(2,9),(2,11),(3,6),(3,7),(3,11),(4,7),(4,9),(4,10),(5,6),(5,8),(5,10),(6,12),(7,12),(8,12),(9,12),(10,12),(11,12)],13)
=> ? = 4 + 1
[2,4,3,1] => [3,4,1,2] => ([(0,2),(0,3),(1,2),(1,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,8),(1,9),(1,10),(2,6),(2,7),(2,10),(3,5),(3,7),(3,9),(4,5),(4,6),(4,8),(5,11),(6,11),(7,11),(8,11),(9,11),(10,11)],12)
=> ? = 3 + 1
[3,1,2,4] => [3,2,1,4] => ([(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,4),(2,4),(3,4)],5)
=> 4 = 3 + 1
[3,1,4,2] => [4,2,1,3] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,7),(1,8),(2,6),(2,8),(3,5),(3,8),(4,5),(4,6),(4,7),(5,9),(6,9),(7,9),(8,9)],10)
=> ? = 4 + 1
[3,2,1,4] => [2,3,1,4] => ([(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,3),(2,3)],4)
=> 3 = 2 + 1
[3,2,4,1] => [2,4,1,3] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,5),(1,6),(2,4),(2,6),(3,4),(3,5),(4,7),(5,7),(6,7)],8)
=> ? = 3 + 1
[3,4,1,2] => [3,1,4,2] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,5),(1,6),(2,4),(2,6),(3,4),(3,5),(4,7),(5,7),(6,7)],8)
=> ? = 4 + 1
[3,4,2,1] => [4,1,3,2] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,7),(1,8),(2,6),(2,8),(3,5),(3,8),(4,5),(4,6),(4,7),(5,9),(6,9),(7,9),(8,9)],10)
=> ? = 5 + 1
[4,1,2,3] => [4,3,2,1] => ([(0,1),(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(0,5),(0,6),(1,9),(1,11),(1,13),(2,9),(2,10),(2,12),(3,8),(3,10),(3,13),(4,8),(4,11),(4,12),(5,7),(5,12),(5,13),(6,7),(6,10),(6,11),(7,14),(8,14),(9,14),(10,14),(11,14),(12,14),(13,14)],15)
=> ? = 6 + 1
[4,1,3,2] => [3,4,2,1] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(0,5),(1,10),(1,11),(2,8),(2,9),(2,11),(3,6),(3,7),(3,11),(4,7),(4,9),(4,10),(5,6),(5,8),(5,10),(6,12),(7,12),(8,12),(9,12),(10,12),(11,12)],13)
=> ? = 4 + 1
[4,2,1,3] => [2,4,3,1] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,7),(1,8),(2,6),(2,8),(3,5),(3,8),(4,5),(4,6),(4,7),(5,9),(6,9),(7,9),(8,9)],10)
=> ? = 5 + 1
[4,2,3,1] => [2,3,4,1] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(1,5),(1,6),(2,4),(2,6),(3,4),(3,5),(4,7),(5,7),(6,7)],8)
=> ? = 3 + 1
[4,3,1,2] => [4,2,3,1] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(0,5),(1,10),(1,11),(2,8),(2,9),(2,11),(3,6),(3,7),(3,11),(4,7),(4,9),(4,10),(5,6),(5,8),(5,10),(6,12),(7,12),(8,12),(9,12),(10,12),(11,12)],13)
=> ? = 5 + 1
[4,3,2,1] => [3,2,4,1] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(0,3),(0,4),(1,7),(1,8),(2,6),(2,8),(3,5),(3,8),(4,5),(4,6),(4,7),(5,9),(6,9),(7,9),(8,9)],10)
=> ? = 4 + 1
Description
The number of simple modules with projective dimension at most 1.
Matching statistic: St000173
Mp00087: Permutations inverse first fundamental transformationPermutations
Mp00063: Permutations to alternating sign matrixAlternating sign matrices
Mp00001: Alternating sign matrices to semistandard tableau via monotone trianglesSemistandard tableaux
St000173: Semistandard tableaux ⟶ ℤResult quality: 27% values known / values provided: 27%distinct values known / distinct values provided: 57%
Values
[1] => [1] => [[1]]
=> [[1]]
=> 0
[1,2] => [1,2] => [[1,0],[0,1]]
=> [[1,1],[2]]
=> 0
[2,1] => [2,1] => [[0,1],[1,0]]
=> [[1,2],[2]]
=> 1
[1,2,3] => [1,2,3] => [[1,0,0],[0,1,0],[0,0,1]]
=> [[1,1,1],[2,2],[3]]
=> 0
[1,3,2] => [1,3,2] => [[1,0,0],[0,0,1],[0,1,0]]
=> [[1,1,1],[2,3],[3]]
=> 1
[2,1,3] => [2,1,3] => [[0,1,0],[1,0,0],[0,0,1]]
=> [[1,1,2],[2,2],[3]]
=> 1
[2,3,1] => [3,1,2] => [[0,1,0],[0,0,1],[1,0,0]]
=> [[1,2,2],[2,3],[3]]
=> 2
[3,1,2] => [3,2,1] => [[0,0,1],[0,1,0],[1,0,0]]
=> [[1,2,3],[2,3],[3]]
=> 3
[3,2,1] => [2,3,1] => [[0,0,1],[1,0,0],[0,1,0]]
=> [[1,1,3],[2,3],[3]]
=> 2
[1,2,3,4] => [1,2,3,4] => [[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]]
=> [[1,1,1,1],[2,2,2],[3,3],[4]]
=> ? = 0
[1,2,4,3] => [1,2,4,3] => [[1,0,0,0],[0,1,0,0],[0,0,0,1],[0,0,1,0]]
=> [[1,1,1,1],[2,2,2],[3,4],[4]]
=> ? = 1
[1,3,2,4] => [1,3,2,4] => [[1,0,0,0],[0,0,1,0],[0,1,0,0],[0,0,0,1]]
=> [[1,1,1,1],[2,2,3],[3,3],[4]]
=> ? = 1
[1,3,4,2] => [1,4,2,3] => [[1,0,0,0],[0,0,1,0],[0,0,0,1],[0,1,0,0]]
=> [[1,1,1,1],[2,3,3],[3,4],[4]]
=> ? = 2
[1,4,2,3] => [1,4,3,2] => [[1,0,0,0],[0,0,0,1],[0,0,1,0],[0,1,0,0]]
=> [[1,1,1,1],[2,3,4],[3,4],[4]]
=> ? = 3
[1,4,3,2] => [1,3,4,2] => [[1,0,0,0],[0,0,0,1],[0,1,0,0],[0,0,1,0]]
=> [[1,1,1,1],[2,2,4],[3,4],[4]]
=> ? = 2
[2,1,3,4] => [2,1,3,4] => [[0,1,0,0],[1,0,0,0],[0,0,1,0],[0,0,0,1]]
=> [[1,1,1,2],[2,2,2],[3,3],[4]]
=> ? = 1
[2,1,4,3] => [2,1,4,3] => [[0,1,0,0],[1,0,0,0],[0,0,0,1],[0,0,1,0]]
=> [[1,1,1,2],[2,2,2],[3,4],[4]]
=> ? = 2
[2,3,1,4] => [3,1,2,4] => [[0,1,0,0],[0,0,1,0],[1,0,0,0],[0,0,0,1]]
=> [[1,1,2,2],[2,2,3],[3,3],[4]]
=> ? = 2
[2,3,4,1] => [4,1,2,3] => [[0,1,0,0],[0,0,1,0],[0,0,0,1],[1,0,0,0]]
=> [[1,2,2,2],[2,3,3],[3,4],[4]]
=> ? = 3
[2,4,1,3] => [4,3,1,2] => [[0,0,1,0],[0,0,0,1],[0,1,0,0],[1,0,0,0]]
=> [[1,2,3,3],[2,3,4],[3,4],[4]]
=> ? = 4
[2,4,3,1] => [3,4,1,2] => [[0,0,1,0],[0,0,0,1],[1,0,0,0],[0,1,0,0]]
=> [[1,1,3,3],[2,3,4],[3,4],[4]]
=> ? = 3
[3,1,2,4] => [3,2,1,4] => [[0,0,1,0],[0,1,0,0],[1,0,0,0],[0,0,0,1]]
=> [[1,1,2,3],[2,2,3],[3,3],[4]]
=> ? = 3
[3,1,4,2] => [4,2,1,3] => [[0,0,1,0],[0,1,0,0],[0,0,0,1],[1,0,0,0]]
=> [[1,2,2,3],[2,3,3],[3,4],[4]]
=> ? = 4
[3,2,1,4] => [2,3,1,4] => [[0,0,1,0],[1,0,0,0],[0,1,0,0],[0,0,0,1]]
=> [[1,1,1,3],[2,2,3],[3,3],[4]]
=> ? = 2
[3,2,4,1] => [2,4,1,3] => [[0,0,1,0],[1,0,0,0],[0,0,0,1],[0,1,0,0]]
=> [[1,1,1,3],[2,3,3],[3,4],[4]]
=> ? = 3
[3,4,1,2] => [3,1,4,2] => [[0,1,0,0],[0,0,0,1],[1,0,0,0],[0,0,1,0]]
=> [[1,1,2,2],[2,2,4],[3,4],[4]]
=> ? = 4
[3,4,2,1] => [4,1,3,2] => [[0,1,0,0],[0,0,0,1],[0,0,1,0],[1,0,0,0]]
=> [[1,2,2,2],[2,3,4],[3,4],[4]]
=> ? = 5
[4,1,2,3] => [4,3,2,1] => [[0,0,0,1],[0,0,1,0],[0,1,0,0],[1,0,0,0]]
=> [[1,2,3,4],[2,3,4],[3,4],[4]]
=> ? = 6
[4,1,3,2] => [3,4,2,1] => [[0,0,0,1],[0,0,1,0],[1,0,0,0],[0,1,0,0]]
=> [[1,1,3,4],[2,3,4],[3,4],[4]]
=> ? = 4
[4,2,1,3] => [2,4,3,1] => [[0,0,0,1],[1,0,0,0],[0,0,1,0],[0,1,0,0]]
=> [[1,1,1,4],[2,3,4],[3,4],[4]]
=> ? = 5
[4,2,3,1] => [2,3,4,1] => [[0,0,0,1],[1,0,0,0],[0,1,0,0],[0,0,1,0]]
=> [[1,1,1,4],[2,2,4],[3,4],[4]]
=> ? = 3
[4,3,1,2] => [4,2,3,1] => [[0,0,0,1],[0,1,0,0],[0,0,1,0],[1,0,0,0]]
=> [[1,2,2,4],[2,3,4],[3,4],[4]]
=> ? = 5
[4,3,2,1] => [3,2,4,1] => [[0,0,0,1],[0,1,0,0],[1,0,0,0],[0,0,1,0]]
=> [[1,1,2,4],[2,2,4],[3,4],[4]]
=> ? = 4
Description
The segment statistic of a semistandard tableau. Let ''T'' be a tableau. A ''k''-segment of ''T'' (in the ''i''th row) is defined to be a maximal consecutive sequence of ''k''-boxes in the ith row. Note that the possible ''i''-boxes in the ''i''th row are not considered to be ''i''-segments. Then seg(''T'') is the total number of ''k''-segments in ''T'' as ''k'' varies over all possible values.
Matching statistic: St000174
Mp00087: Permutations inverse first fundamental transformationPermutations
Mp00063: Permutations to alternating sign matrixAlternating sign matrices
Mp00001: Alternating sign matrices to semistandard tableau via monotone trianglesSemistandard tableaux
St000174: Semistandard tableaux ⟶ ℤResult quality: 27% values known / values provided: 27%distinct values known / distinct values provided: 57%
Values
[1] => [1] => [[1]]
=> [[1]]
=> 0
[1,2] => [1,2] => [[1,0],[0,1]]
=> [[1,1],[2]]
=> 0
[2,1] => [2,1] => [[0,1],[1,0]]
=> [[1,2],[2]]
=> 1
[1,2,3] => [1,2,3] => [[1,0,0],[0,1,0],[0,0,1]]
=> [[1,1,1],[2,2],[3]]
=> 0
[1,3,2] => [1,3,2] => [[1,0,0],[0,0,1],[0,1,0]]
=> [[1,1,1],[2,3],[3]]
=> 1
[2,1,3] => [2,1,3] => [[0,1,0],[1,0,0],[0,0,1]]
=> [[1,1,2],[2,2],[3]]
=> 1
[2,3,1] => [3,1,2] => [[0,1,0],[0,0,1],[1,0,0]]
=> [[1,2,2],[2,3],[3]]
=> 2
[3,1,2] => [3,2,1] => [[0,0,1],[0,1,0],[1,0,0]]
=> [[1,2,3],[2,3],[3]]
=> 3
[3,2,1] => [2,3,1] => [[0,0,1],[1,0,0],[0,1,0]]
=> [[1,1,3],[2,3],[3]]
=> 2
[1,2,3,4] => [1,2,3,4] => [[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]]
=> [[1,1,1,1],[2,2,2],[3,3],[4]]
=> ? = 0
[1,2,4,3] => [1,2,4,3] => [[1,0,0,0],[0,1,0,0],[0,0,0,1],[0,0,1,0]]
=> [[1,1,1,1],[2,2,2],[3,4],[4]]
=> ? = 1
[1,3,2,4] => [1,3,2,4] => [[1,0,0,0],[0,0,1,0],[0,1,0,0],[0,0,0,1]]
=> [[1,1,1,1],[2,2,3],[3,3],[4]]
=> ? = 1
[1,3,4,2] => [1,4,2,3] => [[1,0,0,0],[0,0,1,0],[0,0,0,1],[0,1,0,0]]
=> [[1,1,1,1],[2,3,3],[3,4],[4]]
=> ? = 2
[1,4,2,3] => [1,4,3,2] => [[1,0,0,0],[0,0,0,1],[0,0,1,0],[0,1,0,0]]
=> [[1,1,1,1],[2,3,4],[3,4],[4]]
=> ? = 3
[1,4,3,2] => [1,3,4,2] => [[1,0,0,0],[0,0,0,1],[0,1,0,0],[0,0,1,0]]
=> [[1,1,1,1],[2,2,4],[3,4],[4]]
=> ? = 2
[2,1,3,4] => [2,1,3,4] => [[0,1,0,0],[1,0,0,0],[0,0,1,0],[0,0,0,1]]
=> [[1,1,1,2],[2,2,2],[3,3],[4]]
=> ? = 1
[2,1,4,3] => [2,1,4,3] => [[0,1,0,0],[1,0,0,0],[0,0,0,1],[0,0,1,0]]
=> [[1,1,1,2],[2,2,2],[3,4],[4]]
=> ? = 2
[2,3,1,4] => [3,1,2,4] => [[0,1,0,0],[0,0,1,0],[1,0,0,0],[0,0,0,1]]
=> [[1,1,2,2],[2,2,3],[3,3],[4]]
=> ? = 2
[2,3,4,1] => [4,1,2,3] => [[0,1,0,0],[0,0,1,0],[0,0,0,1],[1,0,0,0]]
=> [[1,2,2,2],[2,3,3],[3,4],[4]]
=> ? = 3
[2,4,1,3] => [4,3,1,2] => [[0,0,1,0],[0,0,0,1],[0,1,0,0],[1,0,0,0]]
=> [[1,2,3,3],[2,3,4],[3,4],[4]]
=> ? = 4
[2,4,3,1] => [3,4,1,2] => [[0,0,1,0],[0,0,0,1],[1,0,0,0],[0,1,0,0]]
=> [[1,1,3,3],[2,3,4],[3,4],[4]]
=> ? = 3
[3,1,2,4] => [3,2,1,4] => [[0,0,1,0],[0,1,0,0],[1,0,0,0],[0,0,0,1]]
=> [[1,1,2,3],[2,2,3],[3,3],[4]]
=> ? = 3
[3,1,4,2] => [4,2,1,3] => [[0,0,1,0],[0,1,0,0],[0,0,0,1],[1,0,0,0]]
=> [[1,2,2,3],[2,3,3],[3,4],[4]]
=> ? = 4
[3,2,1,4] => [2,3,1,4] => [[0,0,1,0],[1,0,0,0],[0,1,0,0],[0,0,0,1]]
=> [[1,1,1,3],[2,2,3],[3,3],[4]]
=> ? = 2
[3,2,4,1] => [2,4,1,3] => [[0,0,1,0],[1,0,0,0],[0,0,0,1],[0,1,0,0]]
=> [[1,1,1,3],[2,3,3],[3,4],[4]]
=> ? = 3
[3,4,1,2] => [3,1,4,2] => [[0,1,0,0],[0,0,0,1],[1,0,0,0],[0,0,1,0]]
=> [[1,1,2,2],[2,2,4],[3,4],[4]]
=> ? = 4
[3,4,2,1] => [4,1,3,2] => [[0,1,0,0],[0,0,0,1],[0,0,1,0],[1,0,0,0]]
=> [[1,2,2,2],[2,3,4],[3,4],[4]]
=> ? = 5
[4,1,2,3] => [4,3,2,1] => [[0,0,0,1],[0,0,1,0],[0,1,0,0],[1,0,0,0]]
=> [[1,2,3,4],[2,3,4],[3,4],[4]]
=> ? = 6
[4,1,3,2] => [3,4,2,1] => [[0,0,0,1],[0,0,1,0],[1,0,0,0],[0,1,0,0]]
=> [[1,1,3,4],[2,3,4],[3,4],[4]]
=> ? = 4
[4,2,1,3] => [2,4,3,1] => [[0,0,0,1],[1,0,0,0],[0,0,1,0],[0,1,0,0]]
=> [[1,1,1,4],[2,3,4],[3,4],[4]]
=> ? = 5
[4,2,3,1] => [2,3,4,1] => [[0,0,0,1],[1,0,0,0],[0,1,0,0],[0,0,1,0]]
=> [[1,1,1,4],[2,2,4],[3,4],[4]]
=> ? = 3
[4,3,1,2] => [4,2,3,1] => [[0,0,0,1],[0,1,0,0],[0,0,1,0],[1,0,0,0]]
=> [[1,2,2,4],[2,3,4],[3,4],[4]]
=> ? = 5
[4,3,2,1] => [3,2,4,1] => [[0,0,0,1],[0,1,0,0],[1,0,0,0],[0,0,1,0]]
=> [[1,1,2,4],[2,2,4],[3,4],[4]]
=> ? = 4
Description
The flush statistic of a semistandard tableau. Let $T$ be a tableaux with $r$ rows such that each row is longer than the row beneath it by at least one box. Let $1 \leq i < k \leq r+1$ and suppose $l$ is the smallest integer greater than $k$ such that there exists an $l$-segment in the $(i+1)$-st row of $T$. A $k$-segment in the $i$-th row of $T$ is called '''flush''' if the leftmost box in the $k$-segment and the leftmost box of the $l$-segment are in the same column of $T$. If, however, no such $l$ exists, then this $k$-segment is said to be flush if the number of boxes in the $k$-segment is equal to difference of the number of boxes between the $i$-th row and $(i+1)$-st row. The flush statistic is given by the number of $k$-segments in $T$.
Mp00160: Permutations graph of inversionsGraphs
Mp00156: Graphs line graphGraphs
Mp00111: Graphs complementGraphs
St000777: Graphs ⟶ ℤResult quality: 21% values known / values provided: 21%distinct values known / distinct values provided: 29%
Values
[1] => ([],1)
=> ([],0)
=> ([],0)
=> ? = 0
[1,2] => ([],2)
=> ([],0)
=> ([],0)
=> ? = 0
[2,1] => ([(0,1)],2)
=> ([],1)
=> ([],1)
=> 1
[1,2,3] => ([],3)
=> ([],0)
=> ([],0)
=> ? = 0
[1,3,2] => ([(1,2)],3)
=> ([],1)
=> ([],1)
=> 1
[2,1,3] => ([(1,2)],3)
=> ([],1)
=> ([],1)
=> 1
[2,3,1] => ([(0,2),(1,2)],3)
=> ([(0,1)],2)
=> ([],2)
=> ? = 2
[3,1,2] => ([(0,2),(1,2)],3)
=> ([(0,1)],2)
=> ([],2)
=> ? = 3
[3,2,1] => ([(0,1),(0,2),(1,2)],3)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 2
[1,2,3,4] => ([],4)
=> ([],0)
=> ([],0)
=> ? = 0
[1,2,4,3] => ([(2,3)],4)
=> ([],1)
=> ([],1)
=> 1
[1,3,2,4] => ([(2,3)],4)
=> ([],1)
=> ([],1)
=> 1
[1,3,4,2] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 2
[1,4,2,3] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 3
[1,4,3,2] => ([(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 2
[2,1,3,4] => ([(2,3)],4)
=> ([],1)
=> ([],1)
=> 1
[2,1,4,3] => ([(0,3),(1,2)],4)
=> ([],2)
=> ([(0,1)],2)
=> 2
[2,3,1,4] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 2
[2,3,4,1] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 3
[2,4,1,3] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,2),(1,2)],3)
=> ([(1,2)],3)
=> ? = 4
[2,4,3,1] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 3
[3,1,2,4] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 3
[3,1,4,2] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,2),(1,2)],3)
=> ([(1,2)],3)
=> ? = 4
[3,2,1,4] => ([(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 2
[3,2,4,1] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 3
[3,4,1,2] => ([(0,2),(0,3),(1,2),(1,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3)],4)
=> ([(0,3),(1,2)],4)
=> ? = 4
[3,4,2,1] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,2),(1,3),(1,4),(2,4),(3,4)],5)
=> ([(1,4),(2,3)],5)
=> ? = 5
[4,1,2,3] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 6
[4,1,3,2] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 4
[4,2,1,3] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 5
[4,2,3,1] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,2),(1,3),(1,4),(2,4),(3,4)],5)
=> ([(1,4),(2,3)],5)
=> ? = 3
[4,3,1,2] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,2),(1,3),(1,4),(2,4),(3,4)],5)
=> ([(1,4),(2,3)],5)
=> ? = 5
[4,3,2,1] => ([(0,1),(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(0,5),(1,2),(1,3),(1,4),(1,5),(2,4),(2,5),(3,4),(3,5)],6)
=> ([(0,5),(1,4),(2,3)],6)
=> ? = 4
Description
The number of distinct eigenvalues of the distance Laplacian of a connected graph.
Mp00160: Permutations graph of inversionsGraphs
Mp00156: Graphs line graphGraphs
Mp00111: Graphs complementGraphs
St001645: Graphs ⟶ ℤResult quality: 21% values known / values provided: 21%distinct values known / distinct values provided: 29%
Values
[1] => ([],1)
=> ([],0)
=> ([],0)
=> ? = 0
[1,2] => ([],2)
=> ([],0)
=> ([],0)
=> ? = 0
[2,1] => ([(0,1)],2)
=> ([],1)
=> ([],1)
=> 1
[1,2,3] => ([],3)
=> ([],0)
=> ([],0)
=> ? = 0
[1,3,2] => ([(1,2)],3)
=> ([],1)
=> ([],1)
=> 1
[2,1,3] => ([(1,2)],3)
=> ([],1)
=> ([],1)
=> 1
[2,3,1] => ([(0,2),(1,2)],3)
=> ([(0,1)],2)
=> ([],2)
=> ? = 2
[3,1,2] => ([(0,2),(1,2)],3)
=> ([(0,1)],2)
=> ([],2)
=> ? = 3
[3,2,1] => ([(0,1),(0,2),(1,2)],3)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 2
[1,2,3,4] => ([],4)
=> ([],0)
=> ([],0)
=> ? = 0
[1,2,4,3] => ([(2,3)],4)
=> ([],1)
=> ([],1)
=> 1
[1,3,2,4] => ([(2,3)],4)
=> ([],1)
=> ([],1)
=> 1
[1,3,4,2] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 2
[1,4,2,3] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 3
[1,4,3,2] => ([(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 2
[2,1,3,4] => ([(2,3)],4)
=> ([],1)
=> ([],1)
=> 1
[2,1,4,3] => ([(0,3),(1,2)],4)
=> ([],2)
=> ([(0,1)],2)
=> 2
[2,3,1,4] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 2
[2,3,4,1] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 3
[2,4,1,3] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,2),(1,2)],3)
=> ([(1,2)],3)
=> ? = 4
[2,4,3,1] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 3
[3,1,2,4] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 3
[3,1,4,2] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,2),(1,2)],3)
=> ([(1,2)],3)
=> ? = 4
[3,2,1,4] => ([(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 2
[3,2,4,1] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 3
[3,4,1,2] => ([(0,2),(0,3),(1,2),(1,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3)],4)
=> ([(0,3),(1,2)],4)
=> ? = 4
[3,4,2,1] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,2),(1,3),(1,4),(2,4),(3,4)],5)
=> ([(1,4),(2,3)],5)
=> ? = 5
[4,1,2,3] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 6
[4,1,3,2] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 4
[4,2,1,3] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 5
[4,2,3,1] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,2),(1,3),(1,4),(2,4),(3,4)],5)
=> ([(1,4),(2,3)],5)
=> ? = 3
[4,3,1,2] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,2),(1,3),(1,4),(2,4),(3,4)],5)
=> ([(1,4),(2,3)],5)
=> ? = 5
[4,3,2,1] => ([(0,1),(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(0,5),(1,2),(1,3),(1,4),(1,5),(2,4),(2,5),(3,4),(3,5)],6)
=> ([(0,5),(1,4),(2,3)],6)
=> ? = 4
Description
The pebbling number of a connected graph.
Mp00160: Permutations graph of inversionsGraphs
Mp00156: Graphs line graphGraphs
Mp00111: Graphs complementGraphs
St000259: Graphs ⟶ ℤResult quality: 21% values known / values provided: 21%distinct values known / distinct values provided: 29%
Values
[1] => ([],1)
=> ([],0)
=> ([],0)
=> ? = 0 - 1
[1,2] => ([],2)
=> ([],0)
=> ([],0)
=> ? = 0 - 1
[2,1] => ([(0,1)],2)
=> ([],1)
=> ([],1)
=> 0 = 1 - 1
[1,2,3] => ([],3)
=> ([],0)
=> ([],0)
=> ? = 0 - 1
[1,3,2] => ([(1,2)],3)
=> ([],1)
=> ([],1)
=> 0 = 1 - 1
[2,1,3] => ([(1,2)],3)
=> ([],1)
=> ([],1)
=> 0 = 1 - 1
[2,3,1] => ([(0,2),(1,2)],3)
=> ([(0,1)],2)
=> ([],2)
=> ? = 2 - 1
[3,1,2] => ([(0,2),(1,2)],3)
=> ([(0,1)],2)
=> ([],2)
=> ? = 3 - 1
[3,2,1] => ([(0,1),(0,2),(1,2)],3)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 2 - 1
[1,2,3,4] => ([],4)
=> ([],0)
=> ([],0)
=> ? = 0 - 1
[1,2,4,3] => ([(2,3)],4)
=> ([],1)
=> ([],1)
=> 0 = 1 - 1
[1,3,2,4] => ([(2,3)],4)
=> ([],1)
=> ([],1)
=> 0 = 1 - 1
[1,3,4,2] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 2 - 1
[1,4,2,3] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 3 - 1
[1,4,3,2] => ([(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 2 - 1
[2,1,3,4] => ([(2,3)],4)
=> ([],1)
=> ([],1)
=> 0 = 1 - 1
[2,1,4,3] => ([(0,3),(1,2)],4)
=> ([],2)
=> ([(0,1)],2)
=> 1 = 2 - 1
[2,3,1,4] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 2 - 1
[2,3,4,1] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 3 - 1
[2,4,1,3] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,2),(1,2)],3)
=> ([(1,2)],3)
=> ? = 4 - 1
[2,4,3,1] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 3 - 1
[3,1,2,4] => ([(1,3),(2,3)],4)
=> ([(0,1)],2)
=> ([],2)
=> ? = 3 - 1
[3,1,4,2] => ([(0,3),(1,2),(2,3)],4)
=> ([(0,2),(1,2)],3)
=> ([(1,2)],3)
=> ? = 4 - 1
[3,2,1,4] => ([(1,2),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 2 - 1
[3,2,4,1] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 3 - 1
[3,4,1,2] => ([(0,2),(0,3),(1,2),(1,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3)],4)
=> ([(0,3),(1,2)],4)
=> ? = 4 - 1
[3,4,2,1] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,2),(1,3),(1,4),(2,4),(3,4)],5)
=> ([(1,4),(2,3)],5)
=> ? = 5 - 1
[4,1,2,3] => ([(0,3),(1,3),(2,3)],4)
=> ([(0,1),(0,2),(1,2)],3)
=> ([],3)
=> ? = 6 - 1
[4,1,3,2] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 4 - 1
[4,2,1,3] => ([(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(2,3)],4)
=> ? = 5 - 1
[4,2,3,1] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,2),(1,3),(1,4),(2,4),(3,4)],5)
=> ([(1,4),(2,3)],5)
=> ? = 3 - 1
[4,3,1,2] => ([(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(1,2),(1,3),(1,4),(2,4),(3,4)],5)
=> ([(1,4),(2,3)],5)
=> ? = 5 - 1
[4,3,2,1] => ([(0,1),(0,2),(0,3),(1,2),(1,3),(2,3)],4)
=> ([(0,2),(0,3),(0,4),(0,5),(1,2),(1,3),(1,4),(1,5),(2,4),(2,5),(3,4),(3,5)],6)
=> ([(0,5),(1,4),(2,3)],6)
=> ? = 4 - 1
Description
The diameter of a connected graph. This is the greatest distance between any pair of vertices.
The following 23 statistics, ordered by result quality, also match your data. Click on any of them to see the details.
St000260The radius of a connected graph. St000466The Gutman (or modified Schultz) index of a connected graph. St001330The hat guessing number of a graph. St000302The determinant of the distance matrix of a connected graph. St000467The hyper-Wiener index of a connected graph. St000771The largest multiplicity of a distance Laplacian eigenvalue in a connected graph. St000772The multiplicity of the largest distance Laplacian eigenvalue in a connected graph. St001232The number of indecomposable modules with projective dimension 2 for Nakayama algebras with global dimension at most 2. St001880The number of 2-Gorenstein indecomposable injective modules in the incidence algebra of the lattice. St000112The sum of the entries reduced by the index of their row in a semistandard tableau. St001879The number of indecomposable summands of the top of the first syzygy of the dual of the regular module in the incidence algebra of the lattice. St000736The last entry in the first row of a semistandard tableau. St000177The number of free tiles in the pattern. St000178Number of free entries. St001520The number of strict 3-descents. St001582The grades of the simple modules corresponding to the points in the poset of the symmetric group under the Bruhat order. St001948The number of augmented double ascents of a permutation. St001208The number of connected components of the quiver of $A/T$ when $T$ is the 1-tilting module corresponding to the permutation in the Auslander algebra $A$ of $K[x]/(x^n)$. St001491The number of indecomposable projective-injective modules in the algebra corresponding to a subset. St001569The maximal modular displacement of a permutation. St001816Eigenvalues of the top-to-random operator acting on a simple module. St000075The orbit size of a standard tableau under promotion. St001235The global dimension of the corresponding Comp-Nakayama algebra.