A355535 Odd numbers of which it is not possible to choose a different prime factor of each prime index.
9, 21, 25, 27, 45, 49, 57, 63, 75, 81, 99, 105, 115, 117, 121, 125, 133, 135, 147, 153, 159, 171, 175, 189, 195, 207, 225, 231, 243, 245, 261, 273, 275, 279, 285, 289, 297, 315, 325, 333, 343, 345, 351, 357, 361, 363, 369, 371, 375, 387, 393, 399, 405, 423
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 9: {2,2} 21: {2,4} 25: {3,3} 27: {2,2,2} 45: {2,2,3} 49: {4,4} 57: {2,8} 63: {2,2,4} 75: {2,3,3} 81: {2,2,2,2} 99: {2,2,5} 105: {2,3,4} For example, the prime indices of 897 are {2,6,9}, of which we can choose prime factors in two ways: (2,2,3) or (2,3,3); but neither of these has all distinct elements, so 897 is in the sequence.
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],OddQ[#]&&Select[Tuples[primeMS/@primeMS[#]],UnsameQ@@#&]=={}&]
Comments