Find all values of $n \in \mathbb N$ for which $3^{2n+1}-2^{2n+1}-6^n$ is a prime number.
Let $k=3^{2n+1}-2^{2n+1}-6^n$. By testing with numbers I got that $k$ cannot be prime for any value of $n$ (tested to $n=20$, so I assumed it's same for every value of $n$).
For $n=1$, $k<0$ $\implies$ $k$ is not prime. (EDIT: oh... it's actually prime if $n=1$. Stupid me calculated $3^3=9$)
For $n>1$:
I managed to prove that if $n$ is even, $k$ is not a prime:
If $n$ is even, then $$3^{2n+1}\equiv3\ (mod\ 10),\quad 2^{2n+1}\equiv2\ (mod\ 10),\quad 6^n\equiv6\ (mod\ 10)$$
$$\implies k\equiv5\ (mod\ 10)$$ So $k$ is divisible by 5 and therefore not prime.
Using the same method for if $n$ is odd, I get: $k\equiv3\ (mod\ 10)$, which doesn't prove anything.
How do I solve for when $n$ is odd?