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!)
A239326 Numbers k such that k^2 +/- (k-1) and (k-1)*k^2 +/- 1 are all primes. 2
2, 3, 6, 13, 21, 100, 120, 195, 393, 541, 1749, 1849, 3640, 3829, 4003, 5488, 5754, 8973, 8989, 9043, 10824, 10828, 13488, 17016, 18493, 19306, 21505, 24270, 27139, 30163, 31530, 34134, 35034, 39514, 40761, 46215, 46285, 46398, 49071, 49869, 53319, 55320 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Intersection of A239115 and A239135.
LINKS
EXAMPLE
6 is this sequence because (6-1)*6^2-1 = 179, (6-1)*6^2+1 = 181, 6^2-6+1 = 31 and 6^2+6-1 = 41 are all primes.
PROG
(Magma) k := 1;
for n in [1..100000] do
if IsPrime(k*(n - 1)*n^2 + 1) and IsPrime(k*(n - 1)*n^2 - 1) and IsPrime(k*n^2 + n - 1) and IsPrime(k*n^2 - n + 1) then
n;
end if;
end for;
CROSSREFS
Sequence in context: A364606 A244790 A111503 * A075530 A032061 A350435
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Edited by Alois P. Heinz, Mar 19 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 24 08:28 EDT 2024. Contains 371927 sequences. (Running on oeis4.)