A370643 Number of subsets of {2..n} such that it is not possible to choose a different binary index of each element.
0, 0, 0, 0, 0, 1, 7, 23, 46, 113, 287, 680, 1546, 3374, 7191, 15008, 30016, 61013, 124354, 252577, 511229, 1031064, 2074281, 4164716, 8350912, 16729473, 33494928, 67034995, 134127390, 268325204, 536737665, 1073581062, 2147162124, 4294458549, 8589210382, 17178890873
Offset: 0
Keywords
Examples
The a(0) = 0 through a(7) = 23 subsets: . . . . . {2,3,4,5} {2,4,6} {2,4,6} {2,3,4,5} {2,3,4,5} {2,3,4,6} {2,3,4,6} {2,3,5,6} {2,3,4,7} {2,4,5,6} {2,3,5,6} {3,4,5,6} {2,3,5,7} {2,3,4,5,6} {2,3,6,7} {2,4,5,6} {2,4,5,7} {2,4,6,7} {2,5,6,7} {3,4,5,6} {3,4,5,7} {3,4,6,7} {3,5,6,7} {4,5,6,7} {2,3,4,5,6} {2,3,4,5,7} {2,3,4,6,7} {2,3,5,6,7} {2,4,5,6,7} {3,4,5,6,7} {2,3,4,5,6,7}
Programs
-
Mathematica
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n,2]],1]; Table[Length[Select[Subsets[Range[2,n]], Select[Tuples[bpe/@#],UnsameQ@@#&]=={}&]],{n,0,10}]
Extensions
More terms from Jinyuan Wang, Mar 28 2025
Comments