A119448 Primes of the form k^k + k^2 + 1.
2, 3, 37, 285311670733, 1102507499354148695951786433413508348166942596435548101, 3877924263464448622666648186154330754898344901344205917642325627886496385065073
Offset: 1
Keywords
Examples
a(3) = 11^11 + 11^2 + 1 = 285311670733 is prime.
Programs
-
Magma
[a: n in [0..250]|IsPrime(a) where a is n^n+n^2+1] // Vincenzo Librandi, Dec 22 2010
-
Mathematica
Join[{2},Select[Table[n^n+n^2+1,{n,50}],PrimeQ]] (* Harvey P. Dale, Feb 07 2018 *)
Extensions
2 added by Vincenzo Librandi, Dec 22 2010
Comments