login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A369313
Number of interval-closed sets in the boolean lattice of dimension n.
2
2, 4, 13, 101, 3938, 3257610, 676675164063
OFFSET
0,1
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.
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
The a(0) = 2 through a(2) = 13 interval-closed sets:
{} {} {}
{{}} {{}} {{}}
{{1}} {{1}}
{{}{1}} {{2}}
{{12}}
{{}{1}}
{{}{2}}
{{1}{2}}
{{1}{12}}
{{2}{12}}
{{}{1}{2}}
{{1}{2}{12}}
{{}{1}{2}{12}}
PROG
(SageMath)
ICS_count = 0
x = Posets.BooleanLattice(n)
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. Cf. A000372.
Sequence in context: A216670 A103845 A055463 * A091957 A327443 A376062
KEYWORD
nonn,hard,more
AUTHOR
Nadia Lafreniere, Jan 19 2024
EXTENSIONS
a(6) from Christian Sievers, Jan 27 2024
STATUS
approved