A370637 Number of subsets of {1..n} such that it is not possible to choose a different binary index of each element.
0, 0, 0, 1, 2, 8, 25, 67, 134, 309, 709, 1579, 3420, 7240, 15077, 30997, 61994, 125364, 253712, 512411, 1032453, 2075737, 4166469, 8352851, 16731873, 33497422, 67038086, 134130344, 268328977, 536741608, 1073586022, 2147296425, 4294592850, 8589346462, 17179033384
Offset: 0
Keywords
Examples
The a(0) = 0 through a(5) = 8 subsets: . . . {1,2,3} {1,2,3} {1,2,3} {1,2,3,4} {1,4,5} {1,2,3,4} {1,2,3,5} {1,2,4,5} {1,3,4,5} {2,3,4,5} {1,2,3,4,5}
Links
- Wikipedia, Axiom of choice.
- Gus Wiseman, Statistics, classes, and transformations of standard compositions
Crossrefs
Programs
-
Mathematica
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n,2]],1]; Table[Length[Select[Subsets[Range[n]], Select[Tuples[bpe/@#],UnsameQ@@#&]=={}&]],{n,0,10}]
Extensions
a(21)-a(34) from Alois P. Heinz, Mar 09 2024
Comments