A326704 BII-numbers of antichains of nonempty sets.
0, 1, 2, 3, 4, 8, 9, 10, 11, 12, 16, 18, 20, 32, 33, 36, 48, 52, 64, 128, 129, 130, 131, 132, 136, 137, 138, 139, 140, 144, 146, 148, 160, 161, 164, 176, 180, 192, 256, 258, 260, 264, 266, 268, 272, 274, 276, 288, 292, 304, 308, 320, 512, 513, 516, 520, 521, 524
Offset: 1
Examples
The sequence of all antichains of nonempty sets together with their BII-numbers begins: 0: {} 1: {{1}} 2: {{2}} 3: {{1},{2}} 4: {{1,2}} 8: {{3}} 9: {{1},{3}} 10: {{2},{3}} 11: {{1},{2},{3}} 12: {{1,2},{3}} 16: {{1,3}} 18: {{2},{1,3}} 20: {{1,2},{1,3}} 32: {{2,3}} 33: {{1},{2,3}} 36: {{1,2},{2,3}} 48: {{1,3},{2,3}} 52: {{1,2},{1,3},{2,3}}
Links
- John Tyler Rascoe, Table of n, a(n) for n = 1..7580
- John Tyler Rascoe, Python Program.
Crossrefs
Programs
-
Mathematica
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n,2]],1]; stableQ[u_,Q_]:=!Apply[Or,Outer[#1=!=#2&&Q[#1,#2]&,u,u,1],{0,1}]; Select[Range[100],stableQ[bpe/@bpe[#],SubsetQ]&]
-
Python
# see linked program
Comments