The task is to find all numbers $n\in \{ 1,...,100 \}$ which are divisible by 5 different natural numbers and explain why there is no more numbers than these.
How would I go about that? I did figure out the two numbers: $$divisors(16) = \{ 1,2,4,8,16 \}$$ $$divisors(81) = \{ 1,3,9,27,81 \}$$ The thing I do lack is a good explanation for why it is these two though.
If a number $n$ has a prime factorization $p_1^{a_1}p_2^{a_2} \dots p_n^{a_n}$, then the number of positive divisors of $n$ is given by $(a_1+1)(a_2+1)\dots(a_n+1)$.
Since $5$ is a prime number, we must have $a_1=4$, and $a_2,a_3, \dots ,a_n =0$.
i.e. $n= (p_1)^4$ for some prime number $p_1$.
For $p_1=2$, $n=16$ and for $p_1=3$, $n=81$. For bigger $p_1$, $n>100$.