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!)
A271666 Primes p such that 4*p^2+4*p-1 is prime. 2

%I #18 Sep 08 2022 08:46:16

%S 2,3,7,13,17,23,31,37,53,59,67,139,149,151,157,167,179,193,199,223,

%T 233,293,307,331,359,373,389,431,479,571,587,619,643,653,683,809,839,

%U 857,863,919,937,947,1021,1091,1123,1151,1187,1277,1301,1367,1427,1511

%N Primes p such that 4*p^2+4*p-1 is prime.

%H Vincenzo Librandi, <a href="/A271666/b271666.txt">Table of n, a(n) for n = 1..1000</a>

%t Select[Prime[Range[300]], PrimeQ[4 #^2 + 4 # - 1] &]

%o (Magma) [p: p in PrimesUpTo(2000) | IsPrime(4*p^2+4*p-1)];

%o (PARI) lista(nn) = forprime(p=2, nn, if(isprime(4*p^2+4*p-1), print1(p, ", "))); \\ _Altug Alkan_, Apr 12 2016

%o (Python)

%o from gmpy2 import is_prime

%o for p in range(3,10**5,2):

%o if(not is_prime(p)):continue

%o elif(is_prime(6*p**2+6*p-1)):print(p)

%o # _Soumil Mandal_, Apr 14 2016

%Y Cf. A171139, A171831, A171832, A261810.

%K nonn,easy

%O 1,1

%A _Vincenzo Librandi_, Apr 12 2016

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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)