A330218 Least BII-number of a set-system with n distinct representatives obtainable by permuting the vertices.
0, 5, 12, 180, 35636, 13
Offset: 1
Keywords
Examples
The sequence of set-systems together with their BII-numbers begins: 0: {} 5: {{1},{1,2}} 12: {{1,2},{3}} 180: {{1,2},{1,3},{2,3},{4}} 35636: {{1,2},{1,3},{2,3},{1,4},{2,4},{3,4},{5}} 13: {{1},{1,2},{3}}
Crossrefs
Programs
-
Mathematica
bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n,2]],1]; graprms[m_]:=Union[Table[Sort[Sort/@(m/.Apply[Rule,Table[{p[[i]],i},{i,Length[p]}],{1}])],{p,Permutations[Union@@m]}]]; dv=Table[Length[graprms[bpe/@bpe[n]]],{n,0,1000}]; Table[Position[dv,i][[1,1]]-1,{i,First[Split[Union[dv],#1+1==#2&]]}]
Comments