Let $n$ be a natural number. Can $n$ have more than $\dfrac{n}{2}+1$ divisors?
(a) $3$
3 = 1 * 3 (2 divisors)
3/2 + 1 = 2
2 <= 2 [OK]
(b) $4$
4 = 1 * 2 * 2 (3 divisors)
4/2 + 1 = 3
3 <= 3 [OK]
(c) $6$
6 = 1 * 2 * 3 (4 divisors)
6/2 + 1 = 4
3 <= 4 [OK]
...
For me, it seems impossible, but I'm not figuring out a way to proof why. I guess that it is related to the fact that, after $2$, all possible divisors will increase the number more than twice.