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!)
A165218 Primes q of the form q=p^2+4 (p=prime) such that r=q^2+4 is also prime. 4
13, 293, 10613, 18773, 76733, 97973, 458333, 552053, 1247693, 2647133, 4012013, 4592453, 11607653, 13520333, 20097293, 25877573, 34845413, 51509333, 53772893, 65399573, 65496653, 66373613, 72880373, 73496333, 86359853, 89737733 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Intersection of A062324 and A045637. Except of the first term, 13, all terms == 5 (mod 6) == 5 (mod 12) == 5 (mod 24) == 23 (mod 30)== 53 (mod 120). Values of primes p in A116886.
LINKS
FORMULA
a(n) = (A116886(n))^2 + 4.
EXAMPLE
Prime q=13=p^2+4 (p=3) and r=q^2+4=13^2+4=173 (prime).
Prime q=293=p^2+4 (p=17) and r=q^2+4=293^2+4=85853 (prime).
MATHEMATICA
Reap[For[p = 2, p < 10^4, p = NextPrime[p], If[PrimeQ[q = p^2+4] && PrimeQ[q^2+4], Print[q]; Sow[q]]]][[2, 1]] (* Jean-François Alcover, Nov 07 2013 *)
Select[Prime[Range[2000]]^2+4, AllTrue[{#, #^2+4}, PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Mar 13 2018 *)
CROSSREFS
Sequence in context: A249864 A246462 A023357 * A317632 A076130 A035272
KEYWORD
nonn
AUTHOR
Zak Seidov, Sep 08 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 March 29 11:45 EDT 2024. Contains 371278 sequences. (Running on oeis4.)