OFFSET
1,2
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:
1: {{1}}
4: {{1,2}}
64: {{1,2,3}}
20: {{1,2},{1,3}}
68: {{1,2},{1,2,3}}
320: {{1,2,3},{1,4}}
52: {{1,2},{1,3},{2,3}}
84: {{1,2},{1,3},{1,2,3}}
16448: {{1,2,3},{1,2,3,4}}
324: {{1,2},{1,2,3},{1,4}}
832: {{1,2,3},{1,4},{2,4}}
116: {{1,2},{1,3},{2,3},{1,2,3}}
MATHEMATICA
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n, 2]], 1];
spnm[y_]:=Max@@NestWhile[Most, y, Union[#]!=Range[0, Max@@#]&];
c=Table[Length[Union[Sort/@Tuples[bpe/@bpe[n]]]], {n, 1000}];
Table[Position[c, n][[1, 1]], {n, spnm[c]}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 16 2023
STATUS
approved