A216148 Primes of the form 2*k^k + 1 = A216147(k).
3, 17832200896513, 78692816150593075150849
Offset: 1
Links
- M. F. Hasler, Table of n, a(n) for n = 1..4
- C. Caldwell, G.L. Honaker (Eds), Prime Curios!: 78692816150593075150849.
- "Jim", Topic: The Lost Proof of Fermat, on mathforum.org, Jan 31 2004
Programs
-
Mathematica
Select[Table[2n^n+1,{n,20}],PrimeQ] (* Harvey P. Dale, Mar 27 2016 *)
-
PARI
for(n=1,999, ispseudoprime(p=n^n*2+1) & print1(p","))
Comments