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!)
A347165 Primes p such that 2*p-1 and (2*p-1)^2+(2*p)^2 are also prime. 1
3, 79, 379, 829, 1279, 2029, 3019, 3109, 3529, 3709, 5479, 5749, 6379, 6709, 7219, 7369, 8689, 11839, 12049, 13219, 13729, 14029, 14419, 15319, 15349, 16189, 17659, 18229, 18439, 20809, 24979, 25819, 26539, 28549, 30859, 32119, 32359, 32779, 33739, 34729, 37039, 38569, 39079, 39679, 44119, 44449 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Except for 3, all terms end in 9.
LINKS
EXAMPLE
a(3) = 379 is a term because 379, 2*379-1 = 757 and (2*379-1)^2+(2*379)^2 = 1147613 are prime.
MAPLE
filter:= proc(p) isprime(p) and isprime(2*p-1) and isprime(8*p^2-4*p+1) end proc:
select(filter, [3, seq(i, i=9..50000, 10)]);
PROG
(Python)
from sympy import isprime, primerange
def ok(p): return isprime(2*p-1) and isprime((2*p-1)**2 + (2*p)**2)
def aupto(limit): return list(filter(ok, primerange(2, limit+1)))
print(aupto(44450)) # Michael S. Branicky, Aug 20 2021
CROSSREFS
Cf. A347110.
Sequence in context: A236069 A364947 A064456 * A073176 A236574 A367249
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Aug 20 2021
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 23 07:28 EDT 2024. Contains 372760 sequences. (Running on oeis4.)