Identifier
Values
[1] => 1
[2] => 2
[1,1] => 2
[3] => 3
[2,1] => 3
[1,1,1] => 3
[4] => 4
[3,1] => 4
[2,2] => 3
[2,1,1] => 4
[1,1,1,1] => 4
[5] => 5
[4,1] => 5
[3,2] => 4
[3,1,1] => 5
[2,2,1] => 4
[2,1,1,1] => 5
[1,1,1,1,1] => 5
[6] => 6
[5,1] => 6
[4,2] => 5
[4,1,1] => 6
[3,3] => 8
[3,2,1] => 5
[3,1,1,1] => 6
[2,2,2] => 8
[2,2,1,1] => 5
[2,1,1,1,1] => 6
[1,1,1,1,1,1] => 6
[7] => 7
[6,1] => 7
[5,2] => 6
[5,1,1] => 7
[4,3] => 10
[4,2,1] => 6
[4,1,1,1] => 7
[3,3,1] => 10
[3,2,2] => 10
[3,2,1,1] => 6
[3,1,1,1,1] => 7
[2,2,2,1] => 10
[2,2,1,1,1] => 6
[2,1,1,1,1,1] => 7
[1,1,1,1,1,1,1] => 7
[8] => 8
[7,1] => 8
[6,2] => 7
[6,1,1] => 8
[5,3] => 12
[5,2,1] => 7
[5,1,1,1] => 8
[4,4] => 15
[4,3,1] => 12
[4,2,2] => 12
[4,2,1,1] => 7
[4,1,1,1,1] => 8
[3,3,2] => 15
[3,3,1,1] => 12
[3,2,2,1] => 12
[3,2,1,1,1] => 7
[3,1,1,1,1,1] => 8
[2,2,2,2] => 15
[2,2,2,1,1] => 12
[2,2,1,1,1,1] => 7
[2,1,1,1,1,1,1] => 8
[1,1,1,1,1,1,1,1] => 8
[9] => 9
[8,1] => 9
[7,2] => 8
[7,1,1] => 9
[6,3] => 14
[6,2,1] => 8
[6,1,1,1] => 9
[5,4] => 18
[5,3,1] => 14
[5,2,2] => 14
[5,2,1,1] => 8
[5,1,1,1,1] => 9
[4,4,1] => 18
[4,3,2] => 18
[4,3,1,1] => 14
[4,2,2,1] => 14
[4,2,1,1,1] => 8
[4,1,1,1,1,1] => 9
[3,3,3] => 15
[3,3,2,1] => 18
[3,3,1,1,1] => 14
[3,2,2,2] => 18
[3,2,2,1,1] => 14
[3,2,1,1,1,1] => 8
[3,1,1,1,1,1,1] => 9
[2,2,2,2,1] => 18
[2,2,2,1,1,1] => 14
[2,2,1,1,1,1,1] => 8
[2,1,1,1,1,1,1,1] => 9
[1,1,1,1,1,1,1,1,1] => 9
[10] => 10
[9,1] => 10
[8,2] => 9
[8,1,1] => 10
[7,3] => 16
>>> Load all 271 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 product of the hook lengths of the diagonal cells in an integer partition.
For a cell in the Ferrers diagram of a partition, the hook length is given by the number of boxes to its right plus the number of boxes below + 1. This statistic is the product of the hook lengths of the diagonal cells $(i,i)$ of a partition.
For a cell in the Ferrers diagram of a partition, the hook length is given by the number of boxes to its right plus the number of boxes below + 1. This statistic is the product of the hook lengths of the diagonal cells $(i,i)$ of a partition.
Code
def statistic(L):
return prod( L.hook_length(*c) for c in L.cells() if c[0] == c[1] )
Created
Jun 27, 2017 at 09:05 by Christian Stump
Updated
Jul 06, 2021 at 07:55 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!