A356944 MM-numbers of multisets of gapless multisets of positive integers. Products of primes indexed by elements of A073491.
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70
Offset: 1
Keywords
Examples
The initial terms and corresponding multiset partitions: 1: {} 2: {{}} 3: {{1}} 4: {{},{}} 5: {{2}} 6: {{},{1}} 7: {{1,1}} 8: {{},{},{}} 9: {{1},{1}} 10: {{},{2}} 11: {{3}} 12: {{},{},{1}} 13: {{1,2}} 14: {{},{1,1}} 15: {{1},{2}} 16: {{},{},{},{}}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; nogapQ[m_]:=Or[m=={},Union[m]==Range[Min[m],Max[m]]]; Select[Range[100],And@@nogapQ/@primeMS/@primeMS[#]&]
Comments