OFFSET
0,3
COMMENTS
A binary index of n is any position of a 1 in its reversed binary expansion. The binary indices of n are row n of A048793.
LINKS
Wikipedia, Axiom of choice.
FORMULA
First differences of A370636.
EXAMPLE
The a(0) = 0 through a(6) = 15 subsets:
. {1} {2} {3} {4} {5} {6}
{1,2} {1,3} {1,4} {1,5} {1,6}
{2,3} {2,4} {2,5} {2,6}
{3,4} {3,5} {3,6}
{1,2,4} {4,5} {4,6}
{1,3,4} {1,2,5} {5,6}
{2,3,4} {1,3,5} {1,2,6}
{2,3,5} {1,3,6}
{2,4,5} {1,4,6}
{3,4,5} {1,5,6}
{2,3,6}
{2,5,6}
{3,4,6}
{3,5,6}
{4,5,6}
MATHEMATICA
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n, 2]], 1];
Table[Length[Select[Subsets[Range[n]], MemberQ[#, n] && Select[Tuples[bpe/@#], UnsameQ@@#&]!={}&]], {n, 0, 10}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 08 2024
EXTENSIONS
a(19)-a(42) from Alois P. Heinz, Mar 09 2024
STATUS
approved