login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A269836
Primes p of the form k^(2*k) + 1.
0
OFFSET
1,1
COMMENTS
Prime terms from A167436.
Also primes p of the form (k^2)^k + 1.
Corresponding values of k: 1, 2, 4, ...; if a(4) exists, k must be larger than 1024.
EXAMPLE
65537 = 4^8 + 1 = 16^4 + 1.
MATHEMATICA
Select[Table[n^(2n)+1, {n, 20}], PrimeQ] (* Harvey P. Dale, Apr 01 2021 *)
PROG
(Magma) [n^(2*n) + 1: n in [1..700] | IsPrime(n^(2*n) + 1)];
CROSSREFS
Cf. A121270 (primes of the form k^k + 1), A167436 (n^(2*n) + 1).
Sequence in context: A003819 A078624 A163319 * A114950 A112969 A208208
KEYWORD
nonn,bref,hard
AUTHOR
Jaroslav Krizek, Mar 06 2016
STATUS
approved