cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A317075 Number of connected antichains of multisets with multiset-join a normal multiset of size n.

This page as a plain text file.
%I A317075 #7 Jul 20 2018 22:29:55
%S A317075 1,1,2,10,147,8998
%N A317075 Number of connected antichains of multisets with multiset-join a normal multiset of size n.
%C A317075 An antichain of multisets is a finite set of finite nonempty multisets, none of which is a submultiset of any other. A multiset is normal if it spans an initial interval of positive integers. The multiset-join of a multiset system has the same vertices with multiplicities equal to the maxima of the multiplicities in the edges.
%H A317075 Goran Kilibarda and Vladeta Jovovic, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL7/Kilibarda/kili2.pdf">Antichains of Multisets</a>, Journal of Integer Sequences, Vol. 7 (2004).
%e A317075 The a(3) = 10 connected antichains of multisets:
%e A317075   (111),
%e A317075   (122), (12)(22),
%e A317075   (112), (11)(12),
%e A317075   (123), (13)(23), (12)(23), (12)(13), (12)(13)(23).
%t A317075 stableSets[u_,Q_]:=If[Length[u]==0,{{}},With[{w=First[u]},Join[stableSets[DeleteCases[u,w],Q],Prepend[#,w]&/@stableSets[DeleteCases[u,r_/;r==w||Q[r,w]||Q[w,r]],Q]]]];
%t A317075 multijoin[mss__]:=Join@@Table[Table[x,{Max[Count[#,x]&/@{mss}]}],{x,Union[mss]}];
%t A317075 submultisetQ[M_,N_]:=Or[Length[M]==0,MatchQ[{Sort[List@@M],Sort[List@@N]},{{x_,Z___},{___,x_,W___}}/;submultisetQ[{Z},{W}]]];
%t A317075 csm[s_]:=With[{c=Select[Tuples[Range[Length[s]],2],And[OrderedQ[#],UnsameQ@@#,Length[Intersection@@s[[#]]]>0]&]},If[c=={},s,csm[Union[Append[Delete[s,List/@c[[1]]],multijoin@@s[[c[[1]]]]]]]]];
%t A317075 allnorm[n_]:=Function[s,Array[Count[s,y_/;y<=#]+1&,n]]/@Subsets[Range[n-1]+1];
%t A317075 cuu[m_]:=Select[stableSets[Union[Rest[Subsets[m]]],submultisetQ],And[multijoin@@#==m,Length[csm[#]]==1]&];
%t A317075 Table[Length[Join@@Table[cuu[m],{m,allnorm[n]}]],{n,5}]
%Y A317075 Cf. A048143, A007718, A255906, A286520, A303837, A303838, A304716, A305001, A305078.
%Y A317075 Cf. A317073, A317076, A317077, A317080.
%K A317075 nonn,more
%O A317075 0,3
%A A317075 _Gus Wiseman_, Jul 20 2018