OFFSET
1,1
COMMENTS
Set q = (3/4)(p + 1) - 1, then (q + 1)/(p + 1) = 3/4. If this sequence is proved to be infinite, that would prove two specific cases of the Schinzel-SierpiĆski conjecture regarding rational numbers.
In fact this sequence is infinite under ('merely') Dickson's conjecture, as it requires infinitely many n with 3n + 2 and 4n + 3 both prime. - Charles R Greathouse IV, Apr 01 2016
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
EXAMPLE
3 is in the sequence because 3/4 * 4 - 1 = 2, which is also prime.
7 is in the sequence because 3/4 * 8 - 1 = 5, which is also prime.
11 is not in the sequence because 3/4 * 12 - 1 = 8 = 2^3.
MATHEMATICA
Select[Prime[Range[500]], PrimeQ[(3/4)(# + 1) - 1] &]
PROG
(PARI) is(n)=n%4==3 && isprime(n\4*3+2) && isprime(n) \\ Charles R Greathouse IV, Apr 01 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Alonso del Arte, Mar 15 2016
STATUS
approved