OFFSET
1,1
COMMENTS
Primes of the form 7p+6 where p is prime. - David Radcliffe, Nov 30 2015
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
MAPLE
select(t -> isprime(t) and isprime((t-6)/7), [seq(i, i=13..10000, 14)]); # Robert Israel, Nov 30 2015
MATHEMATICA
n = 3; a = {}; Do[If[PrimeQ[(Prime[k] - 2n)/(2n + 1)], AppendTo[a, Prime[k]]], {k, 1, 1500}]; a
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Dec 12 2007
EXTENSIONS
Typo in Mathematica program fixed by David Radcliffe, Nov 30 2015
STATUS
approved