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!)
A342706 Primes of the form (p^2 - p*q + q^2)/3, where p and q are consecutive primes. 2
13, 31, 79, 109, 151, 1201, 3271, 3469, 3889, 4111, 12289, 16879, 17791, 25951, 27673, 108301, 126079, 134857, 138679, 169957, 174259, 186019, 231877, 245389, 259309, 355009, 367501, 371737, 397489, 412939, 461017, 477619, 524197, 544429, 565069, 602401, 741031, 833191, 904303, 961069, 1267501 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
For n = 5, p = 19 and q = 23 are consecutive primes and a(5) = (19^2-19*23+23^2)/3 = 151 is prime.
MAPLE
R:= NULL: q:= 2: count:= 0:
while count<100 do
p:= q; q:= nextprime(p);
r:= (p^2-p*q+q^2)/3;
if r::integer and isprime(r) then
count:= count+1; R:= R, r;
fi;
od:
R;
MATHEMATICA
cpQ[{a_, b_}]:=Module[{c=(a^2-a*b+b^2)/3}, If[PrimeQ[c], c, Nothing]]; cpQ/@Partition[Prime[ Range[ 500]], 2, 1] (* Harvey P. Dale, Dec 31 2023 *)
PROG
(Python)
from sympy import isprime, nextprime
def aupto(limit):
p, q, num, alst = 3, 5, 7, []
while num//3 <= limit:
if num%3 == 0 and isprime(num//3): alst.append(num//3)
p, q, num = q, nextprime(q), p**2 - p*q + q**2
return alst
print(aupto(1267501)) # Michael S. Branicky, Mar 18 2021
CROSSREFS
Sequence in context: A211116 A107288 A335732 * A095379 A350095 A160772
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Mar 18 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 August 22 04:50 EDT 2024. Contains 375356 sequences. (Running on oeis4.)