OFFSET
1,1
COMMENTS
If, e.g., -29 is not prime (Mathematica considers -prime as prime), then the first four terms should be omitted.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
FORMULA
p, 2p-33 and 2p+33 all are primes.
MATHEMATICA
Select[Range[2000], PrimeQ[ # ] && PrimeQ[2# + 33] && PrimeQ[2# - 33] &]
Select[Prime[Range[400]], AllTrue[2#+{33, -33}, PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Sep 10 2016 *)
PROG
(Magma) [p: p in PrimesUpTo(3000)| IsPrime(2*p+33) and IsPrime(2*p-33) ]; // Vincenzo Librandi, Jan 28 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Feb 16 2005
STATUS
approved