I have started using my base case where n=1, which is simple gcd(7,3)=1 is obviously true.
So I can assume that P(k) holds (gcd($a_n,a_{n-1})=1$), now I have to prove P(k+1). I believe using strong induction is needed here, but not positive, if so I would assume P(1)...P(k) holds.
I know $a_{n+1} = 2^{n+1}a_n+(-1)^{n+1}a_{n-1}$, and $a_n$ is equal to what is given in the sequence. After this point I've tried using Bezout's Lemma and the fact that the gcd will divide both of these, but keep getting stuck. I have no clue where I could apply my induction hypothesis or how to get it into a form where I can even apply this.
Any help is appreciated.