The question is that for the equation $x = 25 + 5^k$ where $k$ is some random positive integer, can $x$ be divisible by $9$ for any $k$?
My first intuition is that since $25$ = odd and $5^k$=odd then $x$ must be an even number. Rule of divisibility by $9$ states that the sum of digits should be divisible by $9$.
Since $x$ is an even number :
The series : $x = 18 , 36 , 54 , 72... $
Is there any $k$ value that corresponds to any number in this series? I tried to write a Python script and it seems like there are not any. What is the reason behind that?