A125265 Numbers k such that k^11 + 10 is prime.
1, 7, 19, 21, 33, 69, 153, 157, 193, 253, 379, 391, 439, 543, 549, 559, 579, 609, 879, 937, 939, 993, 1063, 1083, 1107, 1119, 1191, 1209, 1267, 1281, 1287, 1333, 1537, 1617, 1797, 1819, 1923, 1971, 1987, 1989, 2041, 2061, 2073, 2101, 2103, 2343, 2373
Offset: 1
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
lst={};k=11;Do[If[PrimeQ[n^k+k-1], AppendTo[lst, n]], {n, 0, 10^4}];lst (* Vladimir Joseph Stephan Orlovsky, Sep 10 2008 *) Select[Range[2500],PrimeQ[#^11+10]&] (* Harvey P. Dale, Jul 01 2015 *)
-
PARI
is(n)=isprime(n^11+10) \\ Charles R Greathouse IV, Feb 17 2017