login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A369313 Number of interval-closed sets in the boolean lattice of dimension n. 2
2, 4, 13, 101, 3938, 3257610, 676675164063 (list; graph; refs; listen; history; text; internal format)
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 A056678
KEYWORD
nonn,hard,more
AUTHOR
Nadia Lafreniere, Jan 19 2024
EXTENSIONS
a(6) from Christian Sievers, Jan 27 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 14 03:23 EDT 2024. Contains 375146 sequences. (Running on oeis4.)