A368185 Sorted list of positions of first appearances in A368183 (number of sets that can be obtained by choosing a different binary index of each binary index).
1, 4, 7, 20, 276, 320, 1088, 65856, 66112, 66624
Offset: 1
Examples
The terms together with the corresponding set-systems begin: 1: {{1}} 4: {{1,2}} 7: {{1},{2},{1,2}} 20: {{1,2},{1,3}} 276: {{1,2},{1,3},{1,4}} 320: {{1,2,3},{1,4}} 1088: {{1,2,3},{1,2,4}} 65856: {{1,2,3},{1,4},{1,5}} 66112: {{1,2,3},{2,4},{1,5}} 66624: {{1,2,3},{1,2,4},{1,5}}
Crossrefs
Programs
-
Mathematica
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n,2]],1]; c=Table[Length[Union[Sort/@Select[Tuples[bpe/@bpe[n]], UnsameQ@@#&]]],{n,1000}]; Select[Range[Length[c]], FreeQ[Take[c,#-1],c[[#]]]&]
Comments