This is simple pattern recognizing
the first few terms are 1, 2, 2, 4, 8, 32, 256, 8192, 2097152...
Notice how the last digits are forming a pattern, (2, 2, 4, 8, 2, 6, 2, 2, 4, 8, 2, 6, 2...
The pattern is 2 -> 2 -> 4 -> 8 -> 2 -> 6
So if the pattern repeats every 6 terms. And assuming you are trying to find the 14th term. You divide 14 by 6 and find the remainder, which is 2.
So look at the 2nd term in the pattern. which is 2.
But remember the first term is 1, so you have to count back a term
So the answer is 2