OFFSET
1,1
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.
EXAMPLE
We have prime(12) = (2^1 + 2^3 + 2^6)/2, so row 12 is (1,3,6).
Each prime followed by its binary indices:
2: 2
3: 1 2
5: 1 3
7: 1 2 3
11: 1 2 4
13: 1 3 4
17: 1 5
19: 1 2 5
23: 1 2 3 5
29: 1 3 4 5
31: 1 2 3 4 5
37: 1 3 6
41: 1 4 6
43: 1 2 4 6
47: 1 2 3 4 6
MATHEMATICA
Table[Join@@Position[Reverse[IntegerDigits[Prime[n], 2]], 1], {n, 15}]
CROSSREFS
KEYWORD
nonn,tabf,base
AUTHOR
Gus Wiseman, May 07 2024
STATUS
approved