Étant donné un entier n >= 2
, affichez le plus grand exposant de sa factorisation principale. Il s'agit de la séquence OEIS A051903 .
Exemple
Soit n = 144
. Sa factorisation principale est 2^4 * 3^2
. Le plus grand exposant est 4
.
Cas de test
2 -> 1
3 -> 1
4 -> 2
5 -> 1
6 -> 1
7 -> 1
8 -> 3
9 -> 2
10 -> 1
11 -> 1
12 -> 2
144 -> 4
200 -> 3
500 -> 3
1024 -> 10
3257832488 -> 3