Questions
We define $A(x)= \text{number of prime factors of x}$
For example $A(2 \times 3^2) = 3$
I noticed when $s_k = \frac{N!}{\prod_j n_j}$ and $\sum_{j} n_j = N$
$$ s_1 < s_2 \implies A(s_1) < A(s_2)$$
Why is this so?
Also What is the asymptotic relation of $A(x)$ as $x \to \infty$?
My attempt for asymptotic relation
$S(x)=A(1)x + A(2)x^2 + A(3)x^3 + \dots$
$$G(x)=\frac{S(x)}{1-x} = A(1!)x + A(2!)x^2 + A(3!)x^3 + \dots$$
We note $A(n!)$ corresponds to the sequence: A022559
Using the result from there
$$ A(n!) \sim \ln\ln(n) + B_2 n + O(n)$$
Counterexample: Let $N = 8$ and $s_1 = \binom83 = 56$, $s_2 = \binom84 = 70$, then $A(s_1) = 4 > 3 = A(s_2)$.