The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A239416 Numbers n such that n^8-8 is prime. 5
3, 7, 19, 39, 73, 75, 101, 107, 145, 147, 171, 213, 235, 247, 263, 285, 319, 353, 359, 369, 399, 443, 445, 521, 523, 557, 613, 675, 693, 707, 733, 781, 791, 805, 815, 829, 837, 879, 927, 943, 961, 999, 1033, 1097, 1103, 1109, 1129, 1137, 1141, 1155, 1157 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Note that all the numbers in this sequence are odd.
LINKS
EXAMPLE
3^8-8 = 6553 is prime. Thus, 3 is a member of this sequence.
MATHEMATICA
Select[Range[3, 1200, 2], PrimeQ[#^8-8]&] (* Harvey P. Dale, Jun 27 2014 *)
PROG
(Python)
import sympy
from sympy import isprime
{print(n) for n in range(10**4) if isprime(n**8-8)}
(PARI) is(n)=isprime(n^8-8) \\ Charles R Greathouse IV, Feb 20 2017
CROSSREFS
Sequence in context: A298125 A047025 A222465 * A281866 A173114 A163572
KEYWORD
nonn
AUTHOR
Derek Orr, Mar 17 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 13 11:18 EDT 2024. Contains 372504 sequences. (Running on oeis4.)