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”).
%I #19 Feb 17 2017 14:57:25
%S 1,7,19,21,33,69,153,157,193,253,379,391,439,543,549,559,579,609,879,
%T 937,939,993,1063,1083,1107,1119,1191,1209,1267,1281,1287,1333,1537,
%U 1617,1797,1819,1923,1971,1987,1989,2041,2061,2073,2101,2103,2343,2373
%N Numbers n such that n^11 + 10 is prime.
%H Harvey P. Dale, <a href="/A125265/b125265.txt">Table of n, a(n) for n = 1..1000</a>
%t 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 *)
%t Select[Range[2500],PrimeQ[#^11+10]&] (* _Harvey P. Dale_, Jul 01 2015 *)
%o (PARI) is(n)=isprime(n^11+10) \\ _Charles R Greathouse IV_, Feb 17 2017
%Y 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).
%K nonn
%O 1,2
%A _Zak Seidov_, Nov 26 2006