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!)
A325108 Number of maximal subsets of {1...n} with no binary containments. 9
1, 1, 1, 2, 2, 4, 5, 6, 6, 11, 13, 16, 17, 22, 27, 28 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
A pair of positive integers is a binary containment if the positions of 1's in the reversed binary expansion of the first are a subset of the positions of 1's in the reversed binary expansion of the second.
LINKS
EXAMPLE
The a(0) = 1 through a(7) = 6 maximal subsets:
{} {1} {1,2} {3} {3,4} {2,5} {1,6} {7}
{1,2} {1,2,4} {3,4} {2,5} {1,6}
{3,5} {3,4} {2,5}
{1,2,4} {1,2,4} {3,4}
{3,5,6} {1,2,4}
{3,5,6}
MATHEMATICA
binpos[n_]:=Join@@Position[Reverse[IntegerDigits[n, 2]], 1];
stableQ[u_, Q_]:=!Apply[Or, Outer[#1=!=#2&&Q[#1, #2]&, u, u, 1], {0, 1}];
maxim[s_]:=Complement[s, Last/@Select[Tuples[s, 2], UnsameQ@@#&&SubsetQ@@#&]];
Table[Length[maxim[Select[Subsets[Range[n]], stableQ[#, SubsetQ[binpos[#1], binpos[#2]]&]&]]], {n, 0, 10}]
CROSSREFS
Sequence in context: A351782 A064574 A059015 * A329474 A260295 A024683
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Mar 28 2019
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 September 18 03:51 EDT 2024. Contains 375995 sequences. (Running on oeis4.)