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

A125263
Numbers n such that n^8 + 7 is prime.
7
0, 2, 4, 10, 66, 68, 86, 88, 134, 146, 200, 216, 250, 276, 306, 310, 410, 422, 472, 492, 506, 516, 538, 548, 550, 594, 638, 716, 746, 758, 862, 888, 942, 954, 964, 982, 992, 998, 1000, 1016, 1020, 1034, 1108, 1164, 1192, 1234, 1338, 1342, 1350, 1374, 1390
OFFSET
1,2
LINKS
MATHEMATICA
lst={}; k=8; Do[If[PrimeQ[n^k+k-1], AppendTo[lst, n]], {n, 0, 10^4}]; lst (* Vladimir Joseph Stephan Orlovsky, Sep 10 2008 *)
Select[Range[0, 1500], PrimeQ[#^8+7]&] (* Harvey P. Dale, Sep 04 2024 *)
PROG
(PARI) is(n)=isprime(n^8+7) \\ 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), this sequence (k=8), A125264 (k=10), A125265 (k=11)..
Sequence in context: A368588 A326325 A080090 * A326949 A215439 A120402
KEYWORD
nonn
AUTHOR
Zak Seidov, Nov 26 2006
STATUS
approved