OFFSET
1,1
COMMENTS
EXAMPLE
The unordered prime signature of 60 is {1,1,2}, with median 1, so 60 is in the sequence.
The unordered prime signature of 1260 is {1,1,2,2}, with median 3/2, so 1260 is not in the sequence.
MATHEMATICA
Select[Range[2, 100], IntegerQ[Median[Last/@FactorInteger[#]]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 16 2023
STATUS
approved