OFFSET
0,2
COMMENTS
An interval-closed set of a poset is a subset I such that if x and y are in I with x <= z <= y, then z is in I.
Interval-closed sets are also called convex subsets of a poset.
The root poset of a root system is the partial order on positive roots where a <= b if b-a is a nonnegative sum of simple roots.
LINKS
Jennifer Elder, Nadia Lafrenière, Erin McNicholas, Jessica Striker, and Amanda Welch, Toggling, rowmotion, and homomesy on interval-closed sets, arXiv:2307.08520 [math.CO], 2023.
EXAMPLE
For n = 0, the poset is empty, so there is only one subset.For n = 1, the poset has only one element, and both subsets are interval-closed.For n = 2, the poset has three elements, and rank 1. Every subset of a poset of rank at most 1 is interval-closed, and therefore there are a(2) = 8 interval-closed sets.For n = 3, the poset has six elements, and only 45 of the 64 subsets are interval-closed.
PROG
(SageMath)
ICS_count = 0
x = RootSystem(['A', n]).root_poset()
for A in x.antichains_iterator():
I = x.order_ideal(A)
Q = x.subposet(set(I).difference(A))
ICS_count += Q.antichains().cardinality()
ICS_count
CROSSREFS
Interval-closed sets are a superset of order ideals. Order ideals of the type A root poset are counted by the Catalan numbers. Cf. A000108
KEYWORD
more,hard,nonn
AUTHOR
Nadia Lafreniere, Jan 26 2024
STATUS
approved