A322846 Squarefree numbers whose prime indices have no equivalent primes.
1, 2, 3, 5, 6, 7, 10, 11, 14, 15, 17, 19, 21, 22, 23, 30, 31, 33, 34, 35, 37, 38, 39, 41, 42, 46, 51, 53, 55, 57, 59, 61, 62, 65, 66, 67, 69, 70, 71, 74, 77, 78, 82, 83, 85, 87, 89, 91, 93, 95, 97, 102, 103, 105, 106, 107, 109, 110, 111, 114, 115, 118, 119
Offset: 1
Keywords
Examples
The sequence of all strict T_0 multiset multisystems together with their MM-numbers begins: 1: {} 2: {{}} 3: {{1}} 5: {{2}} 6: {{},{1}} 7: {{1,1}} 10: {{},{2}} 11: {{3}} 14: {{},{1,1}} 15: {{1},{2}} 17: {{4}} 19: {{1,1,1}} 21: {{1},{1,1}} 22: {{},{3}} 23: {{2,2}} 30: {{},{1},{2}} 31: {{5}} 33: {{1},{3}} 34: {{},{4}} 35: {{2},{1,1}} 37: {{1,1,2}} 38: {{},{1,1,1}} 39: {{1},{1,2}}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; dual[eds_]:=Table[First/@Position[eds,x],{x,Union@@eds}]; Select[Range[100],And[SquareFreeQ[#],UnsameQ@@dual[primeMS/@primeMS[#]]]&]
Comments