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}.
LINKS
Wikipedia, Axiom of choice.
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}}
68: {{1,2},{1,2,3}}
320: {{1,2,3},{1,4}}
352: {{2,3},{1,2,3},{1,4}}
1088: {{1,2,3},{1,2,4}}
3136: {{1,2,3},{1,2,4},{3,4}}
13376: {{1,2,3},{1,2,4},{1,3,4},{2,3,4}}
16704: {{1,2,3},{1,4},{1,2,3,4}}
5184: {{1,2,3},{1,2,4},{1,3,4}}
82240: {{1,2,3},{1,4},{1,2,3,4},{1,5}}
70720: {{1,2,3},{1,2,4},{1,3,4},{1,5}}
MATHEMATICA
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n, 2]], 1];
c=Table[Length[Select[Tuples[bpe/@bpe[n]], UnsameQ@@#&]], {n, 1000}];
spnm[y_]:=Max@@NestWhile[Most, y, Union[#]!=Range[0, Max@@#]&];
Table[Position[c, n][[1, 1]], {n, 0, spnm[c]}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Dec 16 2023
STATUS
approved