OFFSET
1,1
COMMENTS
In order for 3p + 4 to also be in the sequence, it is a necessary but not sufficient condition that p is not congruent to 7 modulo 10. - Alonso del Arte, Nov 08 2018
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
3 and 3 * 3 + 4 = 13 are both prime, so 3 is in the sequence.
5 and 3 * 5 + 4 = 19 are both prime, so 5 is in the sequence.
7 is prime but 3 * 7 + 4 = 25 = 5^2, which is not prime, so 7 is not in the sequence.
MATHEMATICA
Select[Prime[Range[500]], PrimeQ[3# + 4] &] (* Harvey P. Dale, Mar 09 2014 *)
PROG
(Magma) [n: n in [0..1000] | IsPrime(n) and IsPrime(3*n+4)]; // Vincenzo Librandi, Nov 18 2010
(PARI) isok(p) = isprime(p) && isprime(3*p+4); \\ Michel Marcus, Nov 09 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Name adjusted by Alonso del Arte, Nov 08 2018
STATUS
approved