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!)
A161863 Numbers k such that k^2+k+3 and k^2+k-3 are both prime. 3
4, 7, 10, 22, 25, 34, 70, 79, 112, 130, 139, 172, 187, 217, 229, 262, 274, 295, 304, 322, 337, 364, 397, 400, 472, 499, 574, 580, 592, 622, 634, 655, 664, 697, 829, 844, 925, 1057, 1144, 1165, 1255, 1300, 1309, 1357, 1414, 1420, 1489, 1537, 1642, 1669, 1744 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
4 is in the list because 16+4+-3 = 23 and 17 are primes.
7 is in the list because 49+7+-3 = 53 and 59 are primes.
MATHEMATICA
q=3; lst3={}; Do[p=n^2+n; If[PrimeQ[p-q]&&PrimeQ[p+q], AppendTo[lst3, n]], {n, 0, 7!}]; lst3
Select[Range[2000], AllTrue[#^2+#+{3, -3}, PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Jul 01 2019 *)
PROG
(Magma) [k:k in [1..1750]| IsPrime(k^2+k+3) and IsPrime(k^2+k-3)]; // Marius A. Burtea, Feb 17 2020
CROSSREFS
Sequence in context: A338130 A080922 A227686 * A102649 A084386 A275176
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Definition rephrased by R. J. Mathar, Jun 27 2009
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 June 10 08:44 EDT 2024. Contains 373257 sequences. (Running on oeis4.)