A327105 BII-numbers of set-systems with minimum degree 1.
1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 46, 48, 49, 50, 56, 57, 58, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 80, 81, 88, 89, 96, 98, 104, 106, 128
Offset: 1
Keywords
Examples
The sequence of all set-systems with minimum degree 1 together with their BII-numbers begins: 1: {{1}} 2: {{2}} 3: {{1},{2}} 4: {{1,2}} 5: {{1},{1,2}} 6: {{2},{1,2}} 8: {{3}} 9: {{1},{3}} 10: {{2},{3}} 11: {{1},{2},{3}} 12: {{1,2},{3}} 13: {{1},{1,2},{3}} 14: {{2},{1,2},{3}} 15: {{1},{2},{1,2},{3}} 16: {{1,3}} 17: {{1},{1,3}} 18: {{2},{1,3}} 19: {{1},{2},{1,3}} 20: {{1,2},{1,3}} 21: {{1},{1,2},{1,3}}
Programs
-
Mathematica
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n,2]],1]; Select[Range[0,100],If[#==0,0,Min@@Length/@Split[Sort[Join@@bpe/@bpe[#]]]]==1&]
Comments