A371177 Positive integers whose prime indices include all distinct divisors of all prime indices.
1, 2, 4, 6, 8, 10, 12, 16, 18, 20, 22, 24, 30, 32, 34, 36, 40, 42, 44, 48, 50, 54, 60, 62, 64, 66, 68, 72, 80, 82, 84, 88, 90, 96, 100, 102, 108, 110, 118, 120, 124, 126, 128, 132, 134, 136, 144, 150, 160, 162, 164, 166, 168, 170, 176, 180, 186, 192, 198, 200
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 2: {1} 4: {1,1} 6: {1,2} 8: {1,1,1} 10: {1,3} 12: {1,1,2} 16: {1,1,1,1} 18: {1,2,2} 20: {1,1,3} 22: {1,5} 24: {1,1,1,2} 30: {1,2,3} 32: {1,1,1,1,1} 34: {1,7} 36: {1,1,2,2} 40: {1,1,1,3} 42: {1,2,4} 44: {1,1,5} 48: {1,1,1,1,2}
Programs
-
Mathematica
Select[Range[100],PrimeNu[#]==Length[Union @@ Divisors/@PrimePi/@First/@If[#==1,{},FactorInteger[#]]]&]
Comments