Prove that there are infinitely many integers $n$ such that $\frac {2^{6n}-4}{6n-1}$ is equal to an integer
I am struggling with this qustion. Could you walk me through it?
Prove that there are infinitely many integers $n$ such that $\frac {2^{6n}-4}{6n-1}$ is equal to an integer
I am struggling with this qustion. Could you walk me through it?
Here is one method. First one can start by noticing the similarity in $6n-1$ and $6n$ in the exponent. Factor out a $2$ from the numerator to get $$2 * \frac{2^{6n-1} - 2}{6n-1}$$ The question at hand is equivalent to asking if $$2^{6n-1} - 2 \equiv 0 \mod 6n-1$$ (this means the numerator is divisible by the denominator. modular arithmetic is useful in number theory problems so it would be helpful to become familiar with it). Essentially, if $a \equiv b \mod n$, then $a - b$ is divisible by $n$. Here, all this is saying is that $(2^{6n-1} - 2) - 0 = 2^{6n-1} - 2$ is divisible by $6n-1$, which is equivalent to what you are trying to prove. There is a famous theorem called Euler's theorem, which states that $a^{\varphi(n)} \equiv 1 \mod n$ if $n$ is coprime to $a$, where $\phi(n)$ is the number of integers less than $n$ coprime to $n$. You can read about this function here. Let $a = 2$ and $n = 6n-1$ (which are trivially coprime, as one is even and the other is odd). According to Dirichlet's theorem on arithmetic progressions, $6n-1$ contains infinitely many primes. Let $n$ be any arbitrary integer such that $6n-1$ is prime, then $$2^{\phi(6n-1)} \equiv 2^{6n-2} \equiv 1 \mod 6n-1$$ or $$2^{6n-1} \equiv 2 \mod 6n-1$$ proving that $2^{6n-1} - 2 \equiv 0 \mod 6n-1$ for infinitely many $n$. A lot of useful results help with problems like this when they are translated into modular arithmetic, so I would really encourage reading about it.