Identifier
- St001359: Permutations ⟶ ℤ
Values
[1] => 1
[1,2] => 1
[2,1] => 1
[1,2,3] => 1
[1,3,2] => 1
[2,1,3] => 1
[2,3,1] => 2
[3,1,2] => 2
[3,2,1] => 1
[1,2,3,4] => 1
[1,2,4,3] => 1
[1,3,2,4] => 1
[1,3,4,2] => 2
[1,4,2,3] => 2
[1,4,3,2] => 1
[2,1,3,4] => 1
[2,1,4,3] => 1
[2,3,1,4] => 2
[2,3,4,1] => 2
[2,4,1,3] => 2
[2,4,3,1] => 2
[3,1,2,4] => 2
[3,1,4,2] => 2
[3,2,1,4] => 1
[3,2,4,1] => 2
[3,4,1,2] => 1
[3,4,2,1] => 2
[4,1,2,3] => 2
[4,1,3,2] => 2
[4,2,1,3] => 2
[4,2,3,1] => 1
[4,3,1,2] => 2
[4,3,2,1] => 1
[1,2,3,4,5] => 1
[1,2,3,5,4] => 1
[1,2,4,3,5] => 1
[1,2,4,5,3] => 2
[1,2,5,3,4] => 2
[1,2,5,4,3] => 1
[1,3,2,4,5] => 1
[1,3,2,5,4] => 1
[1,3,4,2,5] => 2
[1,3,4,5,2] => 2
[1,3,5,2,4] => 2
[1,3,5,4,2] => 2
[1,4,2,3,5] => 2
[1,4,2,5,3] => 2
[1,4,3,2,5] => 1
[1,4,3,5,2] => 2
[1,4,5,2,3] => 1
[1,4,5,3,2] => 2
[1,5,2,3,4] => 2
[1,5,2,4,3] => 2
[1,5,3,2,4] => 2
[1,5,3,4,2] => 1
[1,5,4,2,3] => 2
[1,5,4,3,2] => 1
[2,1,3,4,5] => 1
[2,1,3,5,4] => 1
[2,1,4,3,5] => 1
[2,1,4,5,3] => 2
[2,1,5,3,4] => 2
[2,1,5,4,3] => 1
[2,3,1,4,5] => 2
[2,3,1,5,4] => 2
[2,3,4,1,5] => 2
[2,3,4,5,1] => 2
[2,3,5,1,4] => 2
[2,3,5,4,1] => 2
[2,4,1,3,5] => 2
[2,4,1,5,3] => 2
[2,4,3,1,5] => 2
[2,4,3,5,1] => 2
[2,4,5,1,3] => 2
[2,4,5,3,1] => 2
[2,5,1,3,4] => 2
[2,5,1,4,3] => 2
[2,5,3,1,4] => 2
[2,5,3,4,1] => 2
[2,5,4,1,3] => 2
[2,5,4,3,1] => 2
[3,1,2,4,5] => 2
[3,1,2,5,4] => 2
[3,1,4,2,5] => 2
[3,1,4,5,2] => 2
[3,1,5,2,4] => 2
[3,1,5,4,2] => 2
[3,2,1,4,5] => 1
[3,2,1,5,4] => 1
[3,2,4,1,5] => 2
[3,2,4,5,1] => 2
[3,2,5,1,4] => 2
[3,2,5,4,1] => 2
[3,4,1,2,5] => 1
[3,4,1,5,2] => 2
[3,4,2,1,5] => 2
[3,4,2,5,1] => 2
[3,4,5,1,2] => 2
[3,4,5,2,1] => 2
[3,5,1,2,4] => 2
[3,5,1,4,2] => 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 permutations in the equivalence class of a permutation obtained by taking inverses of cycles.
In other words, this is $2^k$ where $k$ is the number of cycles of length at least three (St000486The number of cycles of length at least 3 of a permutation.) in its cycle decomposition.
The generating function for the number of equivalence classes, $f(n)$, is
$$\sum_{n\geq 0} f(n)\frac{x^n}{n!} = \frac{e(\frac{x}{2} + \frac{x^2}{4})}{\sqrt{1-x}}.$$
In other words, this is $2^k$ where $k$ is the number of cycles of length at least three (St000486The number of cycles of length at least 3 of a permutation.) in its cycle decomposition.
The generating function for the number of equivalence classes, $f(n)$, is
$$\sum_{n\geq 0} f(n)\frac{x^n}{n!} = \frac{e(\frac{x}{2} + \frac{x^2}{4})}{\sqrt{1-x}}.$$
References
[1] Zwick, D. Equivalence class of permutations based on cycle decomposition and their inverses MathOverflow:324510
[2] Example 5.2.9. and Exercise 5.18. Stanley, R. P. Enumerative combinatorics. Vol. 2 MathSciNet:1676282
[2] Example 5.2.9. and Exercise 5.18. Stanley, R. P. Enumerative combinatorics. Vol. 2 MathSciNet:1676282
Code
def statistic(sigma):
return 2^sum(1 for c in sigma.cycle_tuples() if len(c) > 2)
Created
Mar 03, 2019 at 17:09 by Christian Stump
Updated
Mar 03, 2019 at 17:09 by Christian Stump
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!