Identifier
- St000590: Set partitions ⟶ ℤ
Values
{{1,2}} => 0
{{1},{2}} => 0
{{1,2,3}} => 0
{{1,2},{3}} => 0
{{1,3},{2}} => 0
{{1},{2,3}} => 1
{{1},{2},{3}} => 0
{{1,2,3,4}} => 0
{{1,2,3},{4}} => 0
{{1,2,4},{3}} => 0
{{1,2},{3,4}} => 1
{{1,2},{3},{4}} => 0
{{1,3,4},{2}} => 0
{{1,3},{2,4}} => 0
{{1,3},{2},{4}} => 0
{{1,4},{2,3}} => 0
{{1},{2,3,4}} => 1
{{1},{2,3},{4}} => 1
{{1,4},{2},{3}} => 0
{{1},{2,4},{3}} => 1
{{1},{2},{3,4}} => 2
{{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}} => 1
{{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}} => 0
{{1,2},{3,4,5}} => 1
{{1,2},{3,4},{5}} => 1
{{1,2,5},{3},{4}} => 0
{{1,2},{3,5},{4}} => 1
{{1,2},{3},{4,5}} => 2
{{1,2},{3},{4},{5}} => 0
{{1,3,4,5},{2}} => 0
{{1,3,4},{2,5}} => 0
{{1,3,4},{2},{5}} => 0
{{1,3,5},{2,4}} => 0
{{1,3},{2,4,5}} => 0
{{1,3},{2,4},{5}} => 0
{{1,3,5},{2},{4}} => 0
{{1,3},{2,5},{4}} => 0
{{1,3},{2},{4,5}} => 2
{{1,3},{2},{4},{5}} => 0
{{1,4,5},{2,3}} => 0
{{1,4},{2,3,5}} => 0
{{1,4},{2,3},{5}} => 0
{{1,5},{2,3,4}} => 0
{{1},{2,3,4,5}} => 1
{{1},{2,3,4},{5}} => 1
{{1,5},{2,3},{4}} => 0
{{1},{2,3,5},{4}} => 1
{{1},{2,3},{4,5}} => 3
{{1},{2,3},{4},{5}} => 1
{{1,4,5},{2},{3}} => 0
{{1,4},{2,5},{3}} => 0
{{1,4},{2},{3,5}} => 1
{{1,4},{2},{3},{5}} => 0
{{1,5},{2,4},{3}} => 0
{{1},{2,4,5},{3}} => 1
{{1},{2,4},{3,5}} => 2
{{1},{2,4},{3},{5}} => 1
{{1,5},{2},{3,4}} => 1
{{1},{2,5},{3,4}} => 2
{{1},{2},{3,4,5}} => 2
{{1},{2},{3,4},{5}} => 2
{{1,5},{2},{3},{4}} => 0
{{1},{2,5},{3},{4}} => 1
{{1},{2},{3,5},{4}} => 2
{{1},{2},{3},{4,5}} => 3
{{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}} => 1
{{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}} => 1
{{1,2,3},{4,5},{6}} => 1
{{1,2,3,6},{4},{5}} => 0
{{1,2,3},{4,6},{5}} => 1
{{1,2,3},{4},{5,6}} => 2
{{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}} => 0
{{1,2,4},{3},{5,6}} => 2
{{1,2,4},{3},{5},{6}} => 0
{{1,2,5,6},{3,4}} => 0
{{1,2,5},{3,4,6}} => 0
>>> 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 occurrences of the pattern {{1},{2,3}} such that 2 is minimal, 1 is maximal, (2,3) are consecutive in a block.
References
[1] Chern, B., Diaconis, P., Kane, D. M., Rhoades, R. C. Closed expressions for averages of set partition statistics MathSciNet:3338726 arXiv:1304.4309
Code
def statistic(pi):
return len(pattern_occurrences(pi, [[1], [2, 3]], [2], [1], [(2, 3)], []))
def pattern_occurrences(pi, P, First, Last, Arcs, Consecutives):
"""We assume that pi is a SetPartition of {1,2,...,n} and P is a
SetPartition of {1,2,...,k}.
"""
occurrences = []
pi = SetPartition(pi)
P = SetPartition(P)
openers = [min(B) for B in pi]
closers = [max(B) for B in pi]
pi_sorted = sorted([sorted(b) for b in pi])
edges = [(a,b) for B in pi_sorted for (a,b) in zip(B, B[1:])]
for s in Subsets(pi.base_set(), P.size()):
s = sorted(s)
pi_r = pi.restriction(s)
if pi_r.standardization() != P:
continue
X = pi_r.base_set()
if any(X[i-1] not in openers for i in First):
continue
if any(X[i-1] not in closers for i in Last):
continue
if any((X[i-1], X[j-1]) not in edges for (i,j) in Arcs):
continue
if any(abs(X[i-1]-X[j-1]) != 1 for (i,j) in Consecutives):
continue
occurrences += [s]
return occurrences
Created
Aug 11, 2016 at 14:46 by Martin Rubey
Updated
Aug 11, 2016 at 14:46 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!