Identifier
Values
[1,1] => 1
[2] => 2
[1,1,1] => 1
[1,2] => 2
[2,1] => 2
[3] => 4
[1,1,1,1] => 1
[1,1,2] => 2
[1,2,1] => 2
[1,3] => 8
[2,1,1] => 2
[2,2] => 6
[3,1] => 4
[4] => 8
[1,1,1,1,1] => 1
[1,1,1,2] => 2
[1,1,2,1] => 2
[1,1,3] => 12
[1,2,1,1] => 2
[1,2,2] => 6
[1,3,1] => 8
[1,4] => 24
[2,1,1,1] => 2
[2,1,2] => 4
[2,2,1] => 6
[2,3] => 12
[3,1,1] => 4
[3,2] => 16
[4,1] => 8
[5] => 16
[1,1,1,1,1,1] => 1
[1,1,1,1,2] => 2
[1,1,1,2,1] => 2
[1,1,1,3] => 16
[1,1,2,1,1] => 2
[1,1,2,2] => 6
[1,1,3,1] => 12
[1,1,4] => 48
[1,2,1,1,1] => 2
[1,2,1,2] => 4
[1,2,2,1] => 6
[1,2,3] => 12
[1,3,1,1] => 8
[1,3,2] => 28
[1,4,1] => 24
[1,5] => 64
[2,1,1,1,1] => 2
[2,1,1,2] => 4
[2,1,2,1] => 4
[2,1,3] => 20
[2,2,1,1] => 6
[2,2,2] => 22
[2,3,1] => 12
[2,4] => 56
[3,1,1,1] => 4
[3,1,2] => 8
[3,2,1] => 16
[3,3] => 44
[4,1,1] => 8
[4,2] => 40
[5,1] => 16
[6] => 32
[1,1,1,1,1,1,1] => 1
[1,1,1,1,1,2] => 2
[1,1,1,1,2,1] => 2
[1,1,1,1,3] => 20
[1,1,1,2,1,1] => 2
[1,1,1,2,2] => 6
[1,1,1,3,1] => 16
[1,1,1,4] => 80
[1,1,2,1,1,1] => 2
[1,1,2,1,2] => 4
[1,1,2,2,1] => 6
[1,1,2,3] => 12
[1,1,3,1,1] => 12
[1,1,3,2] => 40
[1,1,4,1] => 48
[1,1,5] => 160
[1,2,1,1,1,1] => 2
[1,2,1,1,2] => 4
[1,2,1,2,1] => 4
[1,2,1,3] => 20
[1,2,2,1,1] => 6
[1,2,2,2] => 22
[1,2,3,1] => 12
[1,2,4] => 80
[1,3,1,1,1] => 8
[1,3,1,2] => 16
[1,3,2,1] => 28
[1,3,3] => 112
[1,4,1,1] => 24
[1,4,2] => 96
[1,5,1] => 64
[1,6] => 160
[2,1,1,1,1,1] => 2
[2,1,1,1,2] => 4
[2,1,1,2,1] => 4
[2,1,1,3] => 28
[2,1,2,1,1] => 4
[2,1,2,2] => 12
[2,1,3,1] => 20
>>> Load all 510 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 sum of the entries in the column specified by the composition of the change of basis matrix from quasisymmetric Schur functions to monomial quasisymmetric functions.
For example, $QS_{31} = M_{1111} + M_{121} + M_{211} + M_{31}$, so the statistic on the composition $31$ is 4.
Apparently, the sum over all compositions gives the sequence oeis:A138178.
For example, $QS_{31} = M_{1111} + M_{121} + M_{211} + M_{31}$, so the statistic on the composition $31$ is 4.
Apparently, the sum over all compositions gives the sequence oeis:A138178.
Code
def statistic(mu):
M = QuasiSymmetricFunctions(ZZ).M()
QS = QuasiSymmetricFunctions(ZZ).QS()
return sum(coeff for _, coeff in M(QS(mu)))
Created
May 20, 2017 at 21:59 by Martin Rubey
Updated
May 20, 2017 at 22:26 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!