OFFSET
1,1
COMMENTS
Analogous to A005384, Sophie Germain primes.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
A002110(4)*p + 1 = 210*p + 1 and p are both primes.
11 is in the sequence because 210*11 + 1 = 2311 is also prime.
MATHEMATICA
Select[Prime[Range[200]], PrimeQ[210#+1]&] (* Harvey P. Dale, Apr 25 2011 *)
PROG
(Magma) [p: p in PrimesUpTo(900) | IsPrime(210*p+1)]; // Vincenzo Librandi, Apr 11 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved