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!)
A236759 Numbers n such that n^4+n-1 is prime. 4
2, 3, 6, 9, 10, 12, 13, 16, 17, 20, 23, 26, 28, 31, 33, 40, 43, 44, 54, 58, 72, 77, 92, 93, 98, 105, 110, 117, 119, 120, 122, 125, 132, 143, 157, 164, 182, 201, 204, 205, 229, 231, 266, 275, 279, 286, 288, 290, 292, 293, 304, 309, 318 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
98^4 + 98 - 1 = 92236913 is prime. Thus, 98 is a member of this sequence.
MATHEMATICA
Select[Range[400], PrimeQ[#^4+#-1]&] (* Harvey P. Dale, Jul 15 2020 *)
PROG
(Python)
import sympy
from sympy import isprime
{print(n) for n in range(10**3) if isprime(n**4+n-1)}
(PARI)
s=[]; for(n=1, 400, if(isprime(n^4+n-1), s=concat(s, n))); s \\ Colin Barker, Jan 31 2014
CROSSREFS
Sequence in context: A188323 A090892 A120752 * A134695 A323393 A190674
KEYWORD
nonn
AUTHOR
Derek Orr, Jan 30 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 9 14:23 EDT 2024. Contains 372351 sequences. (Running on oeis4.)