Problem :
Let 'Child number' of positive integer $n$ be a positive integer that is divisible at least half of the factors of $n$.
Find smallest 'Child number' of $21600$.
My Attempt
Since $$21600 = 2^5 \times 3^3 \times 5^2 $$ we know that $21600$ has $6\times 4\times 3 = 72$ distinct divisors.
Let we call divisors $d_1, d_2, \cdots d_{72}\quad (d_1 < d_2 < \cdots < d_{72}).$
And, 'Child number' must be divisible at least half of them.
Since 'Child number' has $36$ of them, the original problem changes to "Find minimum product of $36$ divisors."
But the problem is I can not sure that the answer is $d_1 \times d_2 \times \cdots \times d_{36}$.
Because there is a divisor which is factorized to two divisors.
For example, $d_{10} = 12$. and we can write this $d_{10} = d_2 \times d_5$ because $d_2 = 2, d_5 = 5$.
I can not sure that should I remove cases like above, if I must how can I?
Thanks for your help.
I believe the answer here is $1800$. You've given us that $21600 = 2^5 \times 3^3 \times 5^2$ has $6\times 4\times 3 = 72$ distinct divisors. To find the smallest child number, we want to divide by the largest primes possible that still give at least $36$ distinct factors.
In the comments, lulu provided that $2160 = 2^4 \times 3^3 \times 5$ has $40$ factors as a starting point, but we can go one step further: $1800 = 2^3 \times 3^2 \times 5^2$ has $36$ factors, and we've divided by $12$ rather than $10$. I looked to remove as many factors as possible to get a clean $d(n)/2$ factors. I'm not sure there's a good algorithm for doing this, as the choices will vary based on the factors. Hence, there's likely no closed form for doing this for other values of $n$, though except for highly composite numbers it's likely doable by hand so long as you have a factorization handy.