Identifier
- St000280: Permutations ⟶ ℤ
Values
[1,2] => 2
[2,1] => 1
[1,2,3] => 5
[1,3,2] => 3
[2,1,3] => 2
[2,3,1] => 3
[3,1,2] => 2
[3,2,1] => 1
[1,2,3,4] => 14
[1,2,4,3] => 9
[1,3,2,4] => 7
[1,3,4,2] => 9
[1,4,2,3] => 7
[1,4,3,2] => 4
[2,1,3,4] => 5
[2,1,4,3] => 3
[2,3,1,4] => 7
[2,3,4,1] => 9
[2,4,1,3] => 7
[2,4,3,1] => 4
[3,1,2,4] => 5
[3,1,4,2] => 3
[3,2,1,4] => 2
[3,2,4,1] => 3
[3,4,1,2] => 7
[3,4,2,1] => 4
[4,1,2,3] => 5
[4,1,3,2] => 3
[4,2,1,3] => 2
[4,2,3,1] => 3
[4,3,1,2] => 2
[4,3,2,1] => 1
[1,2,3,4,5] => 42
[1,2,3,5,4] => 28
[1,2,4,3,5] => 23
[1,2,4,5,3] => 28
[1,2,5,3,4] => 23
[1,2,5,4,3] => 14
[1,3,2,4,5] => 19
[1,3,2,5,4] => 12
[1,3,4,2,5] => 23
[1,3,4,5,2] => 28
[1,3,5,2,4] => 23
[1,3,5,4,2] => 14
[1,4,2,3,5] => 19
[1,4,2,5,3] => 12
[1,4,3,2,5] => 9
[1,4,3,5,2] => 12
[1,4,5,2,3] => 23
[1,4,5,3,2] => 14
[1,5,2,3,4] => 19
[1,5,2,4,3] => 12
[1,5,3,2,4] => 9
[1,5,3,4,2] => 12
[1,5,4,2,3] => 9
[1,5,4,3,2] => 5
[2,1,3,4,5] => 14
[2,1,3,5,4] => 9
[2,1,4,3,5] => 7
[2,1,4,5,3] => 9
[2,1,5,3,4] => 7
[2,1,5,4,3] => 4
[2,3,1,4,5] => 19
[2,3,1,5,4] => 12
[2,3,4,1,5] => 23
[2,3,4,5,1] => 28
[2,3,5,1,4] => 23
[2,3,5,4,1] => 14
[2,4,1,3,5] => 19
[2,4,1,5,3] => 12
[2,4,3,1,5] => 9
[2,4,3,5,1] => 12
[2,4,5,1,3] => 23
[2,4,5,3,1] => 14
[2,5,1,3,4] => 19
[2,5,1,4,3] => 12
[2,5,3,1,4] => 9
[2,5,3,4,1] => 12
[2,5,4,1,3] => 9
[2,5,4,3,1] => 5
[3,1,2,4,5] => 14
[3,1,2,5,4] => 9
[3,1,4,2,5] => 7
[3,1,4,5,2] => 9
[3,1,5,2,4] => 7
[3,1,5,4,2] => 4
[3,2,1,4,5] => 5
[3,2,1,5,4] => 3
[3,2,4,1,5] => 7
[3,2,4,5,1] => 9
[3,2,5,1,4] => 7
[3,2,5,4,1] => 4
[3,4,1,2,5] => 19
[3,4,1,5,2] => 12
[3,4,2,1,5] => 9
[3,4,2,5,1] => 12
[3,4,5,1,2] => 23
[3,4,5,2,1] => 14
[3,5,1,2,4] => 19
[3,5,1,4,2] => 12
[3,5,2,1,4] => 9
>>> 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 size of the preimage of the map 'to labelling permutation' from Parking functions to Permutations.
Code
def to_labelling_permutation(elt):
from sage.combinat.words.word import Word
return Word(elt).standard_permutation().inverse()
@cached_function
def preimages(level):
result = dict()
for el in ParkingFunctions(level):
image = to_labelling_permutation(el)
result[image] = result.get(image, 0) + 1
return result
def statistic(x):
return preimages(x.size()).get(x, 0)
Created
Sep 11, 2015 at 22:08 by Martin Rubey
Updated
Feb 09, 2021 at 14:35 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!