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!)
A236477 Numbers k such that k^3 - k + 1 is prime. 6
2, 4, 6, 7, 10, 11, 14, 15, 19, 21, 22, 25, 26, 31, 35, 39, 41, 42, 45, 50, 52, 54, 57, 62, 75, 77, 84, 85, 87, 90, 92, 95, 99, 101, 102, 106, 111, 116, 120, 125, 129, 130, 132, 134, 136, 139, 140, 141, 147, 155, 167, 169, 176, 189, 195, 202, 221, 230, 237 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
26^3 - 26 + 1 = 17551 is prime. So 26 is a member of this sequence.
MATHEMATICA
Select[Range[250], PrimeQ[#^3-#+1]&] (* Harvey P. Dale, Dec 06 2017 *)
PROG
(Python)
import sympy
from sympy import isprime
{print(n) for n in range(10**3) if isprime(n**3-n+1)}
(PARI)
s=[]; for(n=1, 500, if(isprime(n^3-n+1), s=concat(s, n))); s \\ Colin Barker, Jan 27 2014
CROSSREFS
Sequence in context: A272631 A347694 A274431 * A189214 A189131 A189033
KEYWORD
nonn
AUTHOR
Derek Orr, Jan 26 2014
EXTENSIONS
More terms from Colin Barker, Jan 27 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 26 12:36 EDT 2024. Contains 371997 sequences. (Running on oeis4.)