A325281 Numbers of the form a*b, a*a*b, or a*a*b*c where a, b, and c are distinct primes. Numbers with sorted prime signature (1,1), (1,2), or (1,1,2).
6, 10, 12, 14, 15, 18, 20, 21, 22, 26, 28, 33, 34, 35, 38, 39, 44, 45, 46, 50, 51, 52, 55, 57, 58, 60, 62, 63, 65, 68, 69, 74, 75, 76, 77, 82, 84, 85, 86, 87, 90, 91, 92, 93, 94, 95, 98, 99, 106, 111, 115, 116, 117, 118, 119, 122, 123, 124, 126, 129, 132
Offset: 1
Keywords
Examples
The sequence of terms together with their prime indices and their omega-sequences (see A323023) begins: 6: {1,2} (2,2,1) 10: {1,3} (2,2,1) 12: {1,1,2} (3,2,2,1) 14: {1,4} (2,2,1) 15: {2,3} (2,2,1) 18: {1,2,2} (3,2,2,1) 20: {1,1,3} (3,2,2,1) 21: {2,4} (2,2,1) 22: {1,5} (2,2,1) 26: {1,6} (2,2,1) 28: {1,1,4} (3,2,2,1) 33: {2,5} (2,2,1) 34: {1,7} (2,2,1) 35: {3,4} (2,2,1) 38: {1,8} (2,2,1) 39: {2,6} (2,2,1) 44: {1,1,5} (3,2,2,1) 45: {2,2,3} (3,2,2,1) 46: {1,9} (2,2,1) 50: {1,3,3} (3,2,2,1) 51: {2,7} (2,2,1) 52: {1,1,6} (3,2,2,1) 55: {3,5} (2,2,1) 57: {2,8} (2,2,1) 58: {1,10} (2,2,1) 60: {1,1,2,3} (4,3,2,2,1)
Crossrefs
Programs
-
Mathematica
fdadj[n_Integer]:=If[n==1,0,Length[NestWhileList[Times@@Prime/@Last/@FactorInteger[#]&,n,!PrimeQ[#]&]]]; Select[Range[100],fdadj[#]==PrimeOmega[#]+1&]
Comments