I'm a little lost on how to do this problem. It looks a lot like the definition for the Fermat numbers: $F_n = 2^{2^n} + 1$, however I'm not sure how to use that in order to find all of the primes of the form: $2^{2^n} + 5$.
2026-04-01 02:01:50.1775008910
Find all primes of the form $2^{2^n} + 5$ for a nonnegative integer n
1k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Hint: Look at $2^{2^n} + 5$ modulo $3$ for $n \geq 1$.
I got this hint by factoring $2^{2^n}+5$ for the first few values of $n$ using the
sagecommand[factor(2^(2^n)+5) for n in range(6)]. When in doubt, experiment!