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.

A321188 Number of set systems with no singletons whose multiset union is row n of A305936 (a multiset whose multiplicities are the prime indices of n).

This page as a plain text file.
%I A321188 #14 Oct 31 2018 21:53:37
%S A321188 1,0,0,1,0,0,0,1,0,0,0,1,0,0,0,4,0,1,0,0,0,0,0,3,0,0,1,0,0,0,0,11,0,0,
%T A321188 0,4,0,0,0,1
%N A321188 Number of set systems with no singletons whose multiset union is row n of A305936 (a multiset whose multiplicities are the prime indices of n).
%C A321188 A set system is a finite set of finite nonempty sets.
%C A321188 A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798.
%e A321188 The a(36) = 4 set systems with no singletons whose multiset union is {1,1,2,2,3,4}:
%e A321188   {{1,2},{1,2,3,4}}
%e A321188   {{1,2,3},{1,2,4}}
%e A321188   {{1,2},{1,3},{2,4}}
%e A321188   {{1,2},{1,4},{2,3}}
%t A321188 sps[{}]:={{}};sps[set:{i_,___}]:=Join@@Function[s,Prepend[#,s]&/@sps[Complement[set,s]]]/@Cases[Subsets[set],{i,___}];
%t A321188 mps[set_]:=Union[Sort[Sort/@(#/.x_Integer:>set[[x]])]&/@sps[Range[Length[set]]]];
%t A321188 hyp[m_]:=Select[mps[m],And[And@@UnsameQ@@@#,UnsameQ@@#,Min@@Length/@#>1]&];
%t A321188 nrmptn[n_]:=Join@@MapIndexed[Table[#2[[1]],{#1}]&,If[n==1,{},Flatten[Cases[FactorInteger[n]//Reverse,{p_,k_}:>Table[PrimePi[p],{k}]]]]];
%t A321188 Table[Length[hyp[nrmptn[n]]],{n,30}]
%Y A321188 Cf. A000070, A000296, A000569, A050326, A056239, A112798, A283877, A292444, A305936, A306005, A318285, A318361, A320922, A320923, A320924.
%K A321188 nonn,more
%O A321188 1,16
%A A321188 _Gus Wiseman_, Oct 29 2018