OFFSET
0,1
COMMENTS
A binary index of n (row n of A048793) is any position of a 1 in its reversed binary expansion. For example, 18 has reversed binary expansion (0,1,0,0,1) and binary indices {2,5}.
EXAMPLE
The terms together with the corresponding set-systems begin:
7: {{1},{2},{1,2}}
1: {{1}}
4: {{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}}
MATHEMATICA
nn=10000;
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n, 2]], 1];
q=Table[Length[Union[Sort/@Select[Tuples[bpe/@bpe[n]], UnsameQ@@#&]]], {n, nn}];
k=Max@@Select[Range[Max@@q], SubsetQ[q, Range[#]]&]
Table[Position[q, n][[1, 1]], {n, 0, k}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Dec 18 2023
STATUS
approved