A126894 Numbers k such that k^12 + 4094 is prime.
170625, 181545, 233415, 490035, 492765, 552825, 591045, 642915, 885885, 921375, 1262625, 1358175, 1481025, 1743105, 1748565, 1901445, 2029755, 2062515, 2073435, 2119845, 2193555, 2302755, 2532075, 2761395, 2764125, 2772315
Offset: 1
Keywords
References
- Ribenboim P., 1996. The Little Book of Big Primes. Springer Verlag.
Programs
-
Magma
[n: n in [0..4000] | IsPrime(n^12+4094)] // Vincenzo Librandi, Nov 23 2010
-
Mathematica
Select[Range[1000000], PrimeQ[#^12 + 4094] &]
-
PARI
is(n)=isprime(n^12+4094) \\ Charles R Greathouse IV, Feb 20 2017
Extensions
More terms from Vincenzo Librandi, Mar 26 2010