OFFSET
1,1
COMMENTS
Subsequence of A029710. - R. J. Mathar, May 06 2017
All terms are congruent to 1 (modulo 6). - Matt C. Anderson, May 22 2015
LINKS
Matt C. Anderson, Table of n, a(n) for n = 1..10000 (terms 1..1000 from T. D. Noe).
Tony Forbes and Norman Luhn, Prime k-tuplets.
Maxie D. Schmidt, New Congruences and Finite Difference Equations for Generalized Factorial Functions, arXiv:1701.04741 [math.CO], 2017.
Eric Weisstein's World of Mathematics, Prime Triplet.
MATHEMATICA
Select[Table[Prime[n], {n, 2000}], PrimeQ[# + 4] && PrimeQ[# + 6] &] (* Vladimir Joseph Stephan Orlovsky, Jun 19 2011 *)
PROG
(Magma) [p: p in PrimesUpTo(10000) | IsPrime(p+4) and IsPrime(p+6)]; // Vincenzo Librandi, Aug 23 2015
(PARI) select(p->isprime(p+4) && isprime(p+6), primes(1000)) \\ Charles R Greathouse IV, Mar 17 2023
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved