Let $f(k,s)$ be a function that takes all the factors in an integer $k$ and increases their prime indices by $s$.
e.g.
$$f(28,2)=f(2^2 \cdot 7,2)=f(p_1^2 p_4,2)=p_3^2 p_6 =5^2 \cdot 13=325.$$
I've determined that for any positive integer $n$,
$$\left\vert\{1 \leq k \leq n : f(k,1)>2n\}\right\vert=\left\vert\{n+1 \leq k \leq 2n : f(k,1)\leq 2n\}\right\vert.$$
I understand why this happens; $x\iff f(x,1)$ is a bijection in $\mathbb{N}$, so symmetry requires it.
Through experimentation, it also seems that
$$\left\vert\{1 \leq k \leq n : f(k,2)>3n\}\right\vert=\left\vert\{n+1 \leq k \leq 3n : f(k,2)\leq 3n\}\right\vert.$$
I'm less clear on why this works, particularly because there is no obvious candidate for $x$ in situations like $f(x,2)=2y$ that maintains a 1-to-1 mapping.
More to the point, I haven't been able to extend this pattern any further, and am wondering whether there is a good reason for that. If anyone can shed some insight on whether this general form can or cannot be extended for values of $s>2$, I'll consider my question answered.