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!)
A243300 Numbers k such that k^6 - k^5 - k^4 - k^3 - k^2 - k - 1 is prime. 2
4, 5, 7, 9, 17, 30, 37, 39, 42, 62, 69, 72, 79, 82, 85, 90, 92, 95, 99, 104, 110, 157, 170, 175, 177, 182, 187, 194, 195, 215, 217, 220, 234, 239, 240, 242, 255, 262, 269, 272, 277, 319, 334, 339, 342, 344, 359, 365, 369, 370, 374, 377, 387, 392, 400, 417, 419, 449 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
4^6 - 4^5 - 4^4 - 4^3 - 4^2 - 4 - 1 = 2731 is prime. Thus 4 is a member of this sequence.
MATHEMATICA
Rest@ Select[Range@ 450, Function[n, PrimeQ[Fold[#1 - n^#2 &, n^6, Range@ 5] - 1]]] (* Michael De Vlieger, Apr 03 2017 *)
PROG
(Python)
import sympy
from sympy import isprime
{print(n, end=', ') for n in range(10**3) if isprime(n**6-n**5-n**4-n**3-n**2-n-1)}
(PARI) for(n=1, 10^3, if(ispseudoprime(n^6-sum(i=0, 5, n^i)), print1(n, ", ")))
CROSSREFS
Sequence in context: A035264 A234257 A278335 * A231575 A335001 A368659
KEYWORD
nonn
AUTHOR
Derek Orr, Jun 02 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 April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)