A371450 MM-number of the set-system with BII-number n.
1, 3, 5, 15, 13, 39, 65, 195, 11, 33, 55, 165, 143, 429, 715, 2145, 29, 87, 145, 435, 377, 1131, 1885, 5655, 319, 957, 1595, 4785, 4147, 12441, 20735, 62205, 47, 141, 235, 705, 611, 1833, 3055, 9165, 517, 1551, 2585, 7755, 6721, 20163, 33605, 100815, 1363, 4089
Offset: 0
Keywords
Examples
The set-system with BII-number 30 is {{2},{1,2},{3},{1,3}} with MM-number prime(3) * prime(6) * prime(5) * prime(10) = 20735. The terms together with their prime indices and binary indices of prime indices begin: 1 -> {} -> {} 3 -> {2} -> {{1}} 5 -> {3} -> {{2}} 15 -> {2,3} -> {{1},{2}} 13 -> {6} -> {{1,2}} 39 -> {2,6} -> {{1},{1,2}} 65 -> {3,6} -> {{2},{1,2}} 195 -> {2,3,6} -> {{1},{2},{1,2}} 11 -> {5} -> {{3}} 33 -> {2,5} -> {{1},{3}} 55 -> {3,5} -> {{2},{3}} 165 -> {2,3,5} -> {{1},{2},{3}} 143 -> {5,6} -> {{1,2},{3}} 429 -> {2,5,6} -> {{1},{1,2},{3}} 715 -> {3,5,6} -> {{2},{1,2},{3}} 2145 -> {2,3,5,6} -> {{1},{2},{1,2},{3}}
Programs
-
Mathematica
bix[n_]:=Join@@Position[Reverse[IntegerDigits[n,2]],1]; Table[Times@@Prime/@(Times@@Prime/@#&/@bix/@bix[n]),{n,0,30}]
Comments