Identifier
Values
[2] => 1
[1,1] => -1
[3] => 3
[2,1] => 0
[1,1,1] => -3
[4] => 6
[3,1] => 2
[2,2] => 0
[2,1,1] => -2
[1,1,1,1] => -6
[5] => 10
[4,1] => 5
[3,2] => 2
[3,1,1] => 0
[2,2,1] => -2
[2,1,1,1] => -5
[1,1,1,1,1] => -10
[6] => 15
[5,1] => 9
[4,2] => 5
[4,1,1] => 3
[3,3] => 3
[3,2,1] => 0
[3,1,1,1] => -3
[2,2,2] => -3
[2,2,1,1] => -5
[2,1,1,1,1] => -9
[1,1,1,1,1,1] => -15
[7] => 21
[6,1] => 14
[5,2] => 9
[5,1,1] => 7
[4,3] => 6
[4,2,1] => 3
[4,1,1,1] => 0
[3,3,1] => 1
[3,2,2] => -1
[3,2,1,1] => -3
[3,1,1,1,1] => -7
[2,2,2,1] => -6
[2,2,1,1,1] => -9
[2,1,1,1,1,1] => -14
[1,1,1,1,1,1,1] => -21
[8] => 28
[7,1] => 20
[6,2] => 14
[6,1,1] => 12
[5,3] => 10
[5,2,1] => 7
[5,1,1,1] => 4
[4,4] => 8
[4,3,1] => 4
[4,2,2] => 2
[4,2,1,1] => 0
[4,1,1,1,1] => -4
[3,3,2] => 0
[3,3,1,1] => -2
[3,2,2,1] => -4
[3,2,1,1,1] => -7
[3,1,1,1,1,1] => -12
[2,2,2,2] => -8
[2,2,2,1,1] => -10
[2,2,1,1,1,1] => -14
[2,1,1,1,1,1,1] => -20
[1,1,1,1,1,1,1,1] => -28
[9] => 36
[8,1] => 27
[7,2] => 20
[7,1,1] => 18
[6,3] => 15
[6,2,1] => 12
[6,1,1,1] => 9
[5,4] => 12
[5,3,1] => 8
[5,2,2] => 6
[5,2,1,1] => 4
[5,1,1,1,1] => 0
[4,4,1] => 6
[4,3,2] => 3
[4,3,1,1] => 1
[4,2,2,1] => -1
[4,2,1,1,1] => -4
[4,1,1,1,1,1] => -9
[3,3,3] => 0
[3,3,2,1] => -3
[3,3,1,1,1] => -6
[3,2,2,2] => -6
[3,2,2,1,1] => -8
[3,2,1,1,1,1] => -12
[3,1,1,1,1,1,1] => -18
[2,2,2,2,1] => -12
[2,2,2,1,1,1] => -15
[2,2,1,1,1,1,1] => -20
[2,1,1,1,1,1,1,1] => -27
[1,1,1,1,1,1,1,1,1] => -36
[10] => 45
[9,1] => 35
[8,2] => 27
[8,1,1] => 25
[7,3] => 21
[7,2,1] => 18
>>> Load all 270 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 diagonal index (content) of a partition.
The diagonal index of the cell at row $r$ and column $c$ of a partition is $c - r$; this is sometimes called the content of the cell. The diagonal index of a partition is the sum of the diagonal index of each cell of the partition.
The diagonal index of the cell at row $r$ and column $c$ of a partition is $c - r$; this is sometimes called the content of the cell. The diagonal index of a partition is the sum of the diagonal index of each cell of the partition.
Code
def statistic(la):
return sum((j - i) for (i, j) in la.cells())
Created
May 25, 2016 at 20:28 by Franco Saliola
Updated
May 25, 2016 at 20:28 by Franco Saliola
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!