OFFSET
1,2
COMMENTS
The median of a multiset is either the middle part (for odd length), or the average of the two middle parts (for even length). Since the denominator is always 1 or 2, the median can be represented as an integer by multiplying by 2.
A number's unordered prime signature (row n of A118914) is the multiset of positive exponents in its prime factorization.
EXAMPLE
The unordered prime signature of 2520 is {1,1,2,3}, with median 3/2, so a(2520) = 3.
MATHEMATICA
Table[If[n==1, 1, 2*Median[Last/@FactorInteger[n]]], {n, 100}]
CROSSREFS
The version for divisors is A063655.
The version for prime indices is A360005.
The version for distinct prime indices is A360457.
The version for distinct prime factors is A360458.
The version for prime factors is A360459.
Positions of even terms are A360553.
Positions of odd terms are A360554.
The version for 0-prepended differences is A360555.
A304038 lists distinct prime indices.
A329976 counts partitions with median multiplicity 1.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 14 2023
STATUS
approved