A269836 Primes p of the form k^(2*k) + 1.
2, 17, 65537
Offset: 1
Examples
65537 = 4^8 + 1 = 16^4 + 1.
Programs
-
Magma
[n^(2*n) + 1: n in [1..700] | IsPrime(n^(2*n) + 1)];
-
Mathematica
Select[Table[n^(2n)+1,{n,20}],PrimeQ] (* Harvey P. Dale, Apr 01 2021 *)
Comments