A356955 MM-numbers of multisets of multisets, each covering an initial interval. Products of primes indexed by elements of A055932.
1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 16, 18, 19, 21, 24, 26, 27, 28, 32, 36, 37, 38, 39, 42, 48, 49, 52, 53, 54, 56, 57, 61, 63, 64, 72, 74, 76, 78, 81, 84, 89, 91, 96, 98, 104, 106, 108, 111, 112, 113, 114, 117, 122, 126, 128, 131, 133, 144, 147, 148, 151, 152
Offset: 1
Keywords
Examples
The initial terms and corresponding multisets of multisets: 1: {} 2: {{}} 3: {{1}} 4: {{},{}} 6: {{},{1}} 7: {{1,1}} 8: {{},{},{}} 9: {{1},{1}} 12: {{},{},{1}} 13: {{1,2}} 14: {{},{1,1}} 16: {{},{},{},{}} 18: {{},{1},{1}} 19: {{1,1,1}} 21: {{1},{1,1}} 24: {{},{},{},{1}} 26: {{},{1,2}} 27: {{1},{1},{1}} 28: {{},{},{1,1}} 32: {{},{},{},{},{}}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; normQ[m_]:=Or[m=={},Union[m]==Range[Max[m]]]; Select[Range[100],And@@normQ/@primeMS/@primeMS[#]&]
Comments