Identifier
- St000562: Set partitions ⟶ ℤ
Values
{{1,2}} => 0
{{1},{2}} => 0
{{1,2,3}} => 0
{{1,2},{3}} => 0
{{1,3},{2}} => 0
{{1},{2,3}} => 0
{{1},{2},{3}} => 0
{{1,2,3,4}} => 0
{{1,2,3},{4}} => 0
{{1,2,4},{3}} => 0
{{1,2},{3,4}} => 0
{{1,2},{3},{4}} => 0
{{1,3,4},{2}} => 0
{{1,3},{2,4}} => 1
{{1,3},{2},{4}} => 1
{{1,4},{2,3}} => 0
{{1},{2,3,4}} => 0
{{1},{2,3},{4}} => 0
{{1,4},{2},{3}} => 0
{{1},{2,4},{3}} => 0
{{1},{2},{3,4}} => 0
{{1},{2},{3},{4}} => 0
{{1,2,3,4,5}} => 0
{{1,2,3,4},{5}} => 0
{{1,2,3,5},{4}} => 0
{{1,2,3},{4,5}} => 0
{{1,2,3},{4},{5}} => 0
{{1,2,4,5},{3}} => 0
{{1,2,4},{3,5}} => 1
{{1,2,4},{3},{5}} => 1
{{1,2,5},{3,4}} => 0
{{1,2},{3,4,5}} => 0
{{1,2},{3,4},{5}} => 0
{{1,2,5},{3},{4}} => 0
{{1,2},{3,5},{4}} => 0
{{1,2},{3},{4,5}} => 0
{{1,2},{3},{4},{5}} => 0
{{1,3,4,5},{2}} => 0
{{1,3,4},{2,5}} => 2
{{1,3,4},{2},{5}} => 2
{{1,3,5},{2,4}} => 1
{{1,3},{2,4,5}} => 1
{{1,3},{2,4},{5}} => 1
{{1,3,5},{2},{4}} => 1
{{1,3},{2,5},{4}} => 1
{{1,3},{2},{4,5}} => 1
{{1,3},{2},{4},{5}} => 1
{{1,4,5},{2,3}} => 0
{{1,4},{2,3,5}} => 1
{{1,4},{2,3},{5}} => 1
{{1,5},{2,3,4}} => 0
{{1},{2,3,4,5}} => 0
{{1},{2,3,4},{5}} => 0
{{1,5},{2,3},{4}} => 0
{{1},{2,3,5},{4}} => 0
{{1},{2,3},{4,5}} => 0
{{1},{2,3},{4},{5}} => 0
{{1,4,5},{2},{3}} => 0
{{1,4},{2,5},{3}} => 1
{{1,4},{2},{3,5}} => 1
{{1,4},{2},{3},{5}} => 1
{{1,5},{2,4},{3}} => 0
{{1},{2,4,5},{3}} => 0
{{1},{2,4},{3,5}} => 1
{{1},{2,4},{3},{5}} => 1
{{1,5},{2},{3,4}} => 0
{{1},{2,5},{3,4}} => 0
{{1},{2},{3,4,5}} => 0
{{1},{2},{3,4},{5}} => 0
{{1,5},{2},{3},{4}} => 0
{{1},{2,5},{3},{4}} => 0
{{1},{2},{3,5},{4}} => 0
{{1},{2},{3},{4,5}} => 0
{{1},{2},{3},{4},{5}} => 0
{{1,2,3,4,5,6}} => 0
{{1,2,3,4,5},{6}} => 0
{{1,2,3,4,6},{5}} => 0
{{1,2,3,4},{5,6}} => 0
{{1,2,3,4},{5},{6}} => 0
{{1,2,3,5,6},{4}} => 0
{{1,2,3,5},{4,6}} => 1
{{1,2,3,5},{4},{6}} => 1
{{1,2,3,6},{4,5}} => 0
{{1,2,3},{4,5,6}} => 0
{{1,2,3},{4,5},{6}} => 0
{{1,2,3,6},{4},{5}} => 0
{{1,2,3},{4,6},{5}} => 0
{{1,2,3},{4},{5,6}} => 0
{{1,2,3},{4},{5},{6}} => 0
{{1,2,4,5,6},{3}} => 0
{{1,2,4,5},{3,6}} => 2
{{1,2,4,5},{3},{6}} => 2
{{1,2,4,6},{3,5}} => 1
{{1,2,4},{3,5,6}} => 1
{{1,2,4},{3,5},{6}} => 1
{{1,2,4,6},{3},{5}} => 1
{{1,2,4},{3,6},{5}} => 1
{{1,2,4},{3},{5,6}} => 1
{{1,2,4},{3},{5},{6}} => 1
{{1,2,5,6},{3,4}} => 0
{{1,2,5},{3,4,6}} => 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 internal points of a set partition.
An element $e$ is internal, if there are $f < e < g$ such that the blocks of $f$ and $g$ have larger minimal element than the block of $e$. See Section 5.5 of [1]
An element $e$ is internal, if there are $f < e < g$ such that the blocks of $f$ and $g$ have larger minimal element than the block of $e$. See Section 5.5 of [1]
References
[1] Mansour, T. Combinatorics of set partitions MathSciNet:2953184
Code
def canonical_word(pi):
"""
Return the word with w_i being the index of the block of i, when
pi is sorted according to minimal elements.
EXAMPLES:
sage: canonical_word([[1,3],[2,4,7],[5,6]])
1212332
"""
pi = SetPartition(pi).standardization()
w = [None]*pi.size()
for i, block in enumerate(sorted([sorted(b) for b in pi]), 1):
for e in block:
w[e-1] = i
return Word(w)
def statistic(pi):
"""e is internal, if there are f < e < g such that the blocks of f
and g have larger minimal element than the block of e.
sage: statistic([[1,4],[2,5,7],[3],[6]])
2
sage: canonical_word([[1,5,9,12],[2,4,8],[3,7,11],[6,10]])
word: 123214321431
sage: statistic([[1,5,9,12],[2,4,8],[3,7,11],[6,10]])
5
"""
w = canonical_word(pi)
count = 0
for (i, b) in enumerate(w):
has_smaller = any(b < w[j] for j in range(i))
has_bigger = any(b < w[j] for j in range(i+1, len(w)))
if has_smaller and has_bigger:
count += 1
return count
Created
Aug 06, 2016 at 09:27 by Martin Rubey
Updated
Aug 06, 2016 at 09:27 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!