OFFSET
1,1
COMMENTS
Composite numbers of the form A023202(k)+4, any k.
A087680 without the {7} [Proof: there are no 3 primes in arithmetic progression p, p+4, p+8, except p=3].
If p=3*l+1, p+8 were divisible by 3, and if p=3*l+2, p+4 were divisible by 3. - R. J. Mathar, Aug 20 2009
All terms are divisible by 3. - Zak Seidov, Apr 22 2015
FORMULA
EXAMPLE
a(1) = 5(prime)+4 = 13(prime)-4 = 9 (composite).
a(2) = 11(prime)+4 = 19(prime)-4 = 15 (composite).
MATHEMATICA
Select[Range[8, 2000], PrimeQ[#+4] && PrimeQ[#-4] &] (* Vincenzo Librandi, Apr 22 2015 *)
PROG
(Magma) [n: n in [8..2000] | IsPrime(n+4) and IsPrime(n-4)]; // Vincenzo Librandi, Apr 22 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Aug 14 2009
EXTENSIONS
65 removed, 337 changed to 237 etc. by R. J. Mathar, Aug 20 2009
STATUS
approved