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”).

A125265
Numbers n such that n^11 + 10 is prime.
8
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,2
LINKS
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 *)
PROG
(PARI) is(n)=isprime(n^11+10) \\ Charles R Greathouse IV, Feb 17 2017
CROSSREFS
Other sequences of the type "Numbers n such that n^k + k - 1 is prime": A000040 (k=1), A005574 (k=2), A067200 (k=3), A125259 (k=4), A125260 (k=5), A125261 (k=6), A125262 (k=7), A125263 (k=8), A125264 (k=10).
Sequence in context: A372539 A109637 A039513 * A023152 A123532 A113972
KEYWORD
nonn
AUTHOR
Zak Seidov, Nov 26 2006
STATUS
approved