Identifier
- St001781: Set partitions ⟶ ℤ
Values
{{1}} => 0
{{1,2}} => 0
{{1},{2}} => 0
{{1,2,3}} => 0
{{1,2},{3}} => 0
{{1,3},{2}} => 1
{{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}} => 1
{{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}} => 2
{{1},{2,4},{3}} => 1
{{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}} => 0
{{1,2,4},{3},{5}} => 0
{{1,2,5},{3,4}} => 1
{{1,2},{3,4,5}} => 0
{{1,2},{3,4},{5}} => 0
{{1,2,5},{3},{4}} => 0
{{1,2},{3,5},{4}} => 1
{{1,2},{3},{4,5}} => 0
{{1,2},{3},{4},{5}} => 0
{{1,3,4,5},{2}} => 1
{{1,3,4},{2,5}} => 1
{{1,3,4},{2},{5}} => 1
{{1,3,5},{2,4}} => 2
{{1,3},{2,4,5}} => 1
{{1,3},{2,4},{5}} => 1
{{1,3,5},{2},{4}} => 1
{{1,3},{2,5},{4}} => 2
{{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}} => 0
{{1,5},{2,3,4}} => 0
{{1},{2,3,4,5}} => 0
{{1},{2,3,4},{5}} => 0
{{1,5},{2,3},{4}} => 1
{{1},{2,3,5},{4}} => 0
{{1},{2,3},{4,5}} => 0
{{1},{2,3},{4},{5}} => 0
{{1,4,5},{2},{3}} => 2
{{1,4},{2,5},{3}} => 3
{{1,4},{2},{3,5}} => 2
{{1,4},{2},{3},{5}} => 2
{{1,5},{2,4},{3}} => 2
{{1},{2,4,5},{3}} => 1
{{1},{2,4},{3,5}} => 1
{{1},{2,4},{3},{5}} => 1
{{1,5},{2},{3,4}} => 1
{{1},{2,5},{3,4}} => 0
{{1},{2},{3,4,5}} => 0
{{1},{2},{3,4},{5}} => 0
{{1,5},{2},{3},{4}} => 3
{{1},{2,5},{3},{4}} => 2
{{1},{2},{3,5},{4}} => 1
{{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}} => 0
{{1,2,3,5},{4},{6}} => 0
{{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}} => 1
{{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}} => 0
{{1,2,4,5},{3},{6}} => 0
{{1,2,4,6},{3,5}} => 0
{{1,2,4},{3,5,6}} => 0
{{1,2,4},{3,5},{6}} => 0
{{1,2,4,6},{3},{5}} => 0
{{1,2,4},{3,6},{5}} => 1
{{1,2,4},{3},{5,6}} => 0
{{1,2,4},{3},{5},{6}} => 0
{{1,2,5,6},{3,4}} => 1
>>> Load all 1155 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 interlacing number of a set partition.
Let $\pi$ be a set partition of $\{1,\dots,n\}$ with $k$ blocks. To each block of $\pi$ we add the element $\infty$, which is larger than $n$. Then, an interlacing of $\pi$ is a pair of blocks $B=(B_1 < \dots < B_b < B_{b+1} = \infty)$ and $C=(C_1 < \dots < C_c < C_{c+1} = \infty)$ together with an index $1\leq i\leq \min(b, c)$, such that $B_i < C_i < B_{i+1} < C_{i+1}$.
Let $\pi$ be a set partition of $\{1,\dots,n\}$ with $k$ blocks. To each block of $\pi$ we add the element $\infty$, which is larger than $n$. Then, an interlacing of $\pi$ is a pair of blocks $B=(B_1 < \dots < B_b < B_{b+1} = \infty)$ and $C=(C_1 < \dots < C_c < C_{c+1} = \infty)$ together with an index $1\leq i\leq \min(b, c)$, such that $B_i < C_i < B_{i+1} < C_{i+1}$.
References
[1] Prasad, A., Ram, S. Set partitions, tableaux, and subspace profiles under regular split semisimple matrices arXiv:2112.00479
Code
def statistic(self):
self = SetPartition(self)
arcs = []
for j, p in enumerate(sorted(self)):
p = sorted(p)
arcs.append([])
for i in range(len(p)-1):
arcs[j].append((p[i], p[i+1]))
arcs[j].append((p[-1], Infinity))
interlacings = 0
for i in range(len(arcs)):
for j in range(i+1, len(arcs)):
for (a,b), (c,d) in zip(arcs[i], arcs[j]):
if a < c < b < d or c < a < d < b:
interlacings += 1
return interlacings
Created
Mar 28, 2022 at 11:14 by Martin Rubey
Updated
Mar 28, 2022 at 11:14 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!