OFFSET
1,2
COMMENTS
The consecutive integers 35 + 210 a(n) and 36 + 210 a(n) are both products of three primes (distinct if n > 1).
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
MAPLE
A240716 := select(t -> andmap(isprime, [1+6*t, 6+35*t]), [$1..N]); # Robert Israel, Apr 10 2014
MATHEMATICA
Select[Range[1000], PrimeQ[6 # + 1] && PrimeQ[35 # + 6] &] (* Vincenzo Librandi, Jul 01 2014 *)
PROG
(Magma) [n: n in [0..1000] | IsPrime(6*n+1) and IsPrime(35*n+6)]; // Vincenzo Librandi, Jul 01 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Israel, Apr 10 2014
STATUS
approved