login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A320464
MM-numbers of labeled multi-hypergraphs with no singletons spanning an initial interval of positive integers.
5
1, 13, 113, 169, 377, 611, 1291, 1363, 1469, 1937, 2021, 2117, 2197, 3277, 4537, 4859, 4901, 5249, 5311, 7423, 7943, 8249, 8507, 10933, 12769, 16211, 16403, 16559, 16783, 16837, 17719, 19097, 20443, 20453, 24553, 25181, 25477, 26273, 26969, 27521, 28561, 28717
OFFSET
1,2
COMMENTS
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. The multiset multisystem with MM-number n is formed by taking the multiset of prime indices of each part of the multiset of prime indices of n. For example, the prime indices of 78 are {1,2,6}, so the multiset multisystem with MM-number 78 is {{},{1},{1,2}}.
EXAMPLE
The sequence of terms together with their multiset multisystems begins:
1: {}
13: {{1,2}}
113: {{1,2,3}}
169: {{1,2},{1,2}}
377: {{1,2},{1,3}}
611: {{1,2},{2,3}}
1291: {{1,2,3,4}}
1363: {{1,3},{2,3}}
1469: {{1,2},{1,2,3}}
1937: {{1,2},{3,4}}
2021: {{1,4},{2,3}}
2117: {{1,3},{2,4}}
2197: {{1,2},{1,2},{1,2}}
3277: {{1,3},{1,2,3}}
4537: {{1,2},{1,3,4}}
4859: {{1,4},{1,2,3}}
4901: {{1,2},{1,2},{1,3}}
5249: {{1,3},{1,2,4}}
5311: {{2,3},{1,2,3}}
7423: {{1,2},{2,3,4}}
7943: {{1,2},{1,2},{2,3}}
8249: {{2,4},{1,2,3}}
8507: {{2,3},{1,2,4}}
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
normQ[sys_]:=Or[Length[sys]==0, Union@@sys==Range[Max@@Max@@sys]];
Select[Range[10000], And[normQ[primeMS/@primeMS[#]], And@@(And[SquareFreeQ[#], PrimeOmega[#]>1]&/@primeMS[#])]&]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Oct 13 2018
STATUS
approved