OFFSET
1,1
LINKS
V. Raman, Table of n, a(n) for n = 1..10000
FORMULA
a(n) >> n log^2 n. - Charles R Greathouse IV, Sep 07 2012
EXAMPLE
28 is a member since 281 & 283 are prime while 287 & 289 are composite.
MATHEMATICA
t = {}; Do[ps = Select[Range[10*n, 10*n + 9], PrimeQ]; If[ps == {10*n + 1, 10*n + 3}, AppendTo[t, n]], {n, 0, 2689}]; t (* T. D. Noe, Sep 04 2012 *)
Select[Range[2100], PrimeQ[10#+{1, 3, 7, 9}]=={True, True, False, False}&] (* Harvey P. Dale, Dec 17 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
V. Raman, Sep 03 2012
EXTENSIONS
Definition corrected by Harvey P. Dale, Dec 17 2014
STATUS
approved