OFFSET
1,1
COMMENTS
If n is in the sequence, then 15 n is in A068405.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
23 and (15*23+1)/2 = 173 are prime, so 23 is in the sequence.
MAPLE
select(p -> isprime(p) and isprime((15*p+1)/2), [seq(i, i=3..10000, 2)]);
MATHEMATICA
Select[Prime[Range[300]], PrimeQ[(15#+1)/2]&] (* Harvey P. Dale, Sep 20 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Israel, May 25 2017
STATUS
approved