-1

I simplified the problem as writing it first as $2^{2^{6n+2}}+3\equiv 0(mod 19)$ finally ending till $2^{2^{6n+2}}\equiv 2^4(mod 19)$.I cannot figure out how to deal with the exponents with the same base on both sides of the congruence.

voidEnergy
  • 36
  • 6

1 Answers1

-1

By Fermat's little theorem,

$2^{18}\equiv 1\pmod{19}$.

So $2^{18k+4}\equiv 2^4\equiv -3\pmod{19}$ for any integer $k$. You can check that $18$ is the multiplicative order of $2$ although actually we don't need it.

Now, we want to find the residue of $4^{3n+1}$ modulo $18$.

$4^{3n+1}\equiv 64^n\cdot 4\equiv 10^n\cdot 4\pmod{18}$

You can check regardless of whether $n$ is even or odd, $4^{3n+1}\equiv 4\pmod{18}$.

So $2^{4^{3n+1}}+3\equiv 2^{18k+4}+3\equiv 2^4+3\equiv 0\pmod{19}$.

daruma
  • 2,469