A359913 Numbers whose multiset of prime factors has integer median.
2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 35, 37, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 61, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81
Offset: 1
Keywords
Examples
The terms together with their prime factors begin: 2: {2} 3: {3} 4: {2,2} 5: {5} 7: {7} 8: {2,2,2} 9: {3,3} 11: {11} 12: {2,2,3} 13: {13} 15: {3,5} 16: {2,2,2,2} 17: {17} 18: {2,3,3} 19: {19} 20: {2,2,5} 21: {3,7} 23: {23} 24: {2,2,2,3}
Crossrefs
Programs
-
Mathematica
Select[Range[2,100],IntegerQ[Median[Flatten[ConstantArray@@@FactorInteger[#]]]]&]
Comments