OFFSET
1,1
COMMENTS
All terms == 1 (mod 12).
Members k of A112998 such that k+2 is squarefree.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3)=613 is in the sequence because 613 is prime, 614=2*307 is the product of two distinct primes, and 615=3*5*41 is the product of three distinct primes.
MAPLE
select(t -> isprime(t) and isprime((t+1)/2) and numtheory:-issqrfree(t+2) and numtheory:-bigomega(t+2)=3, [seq(i, i=1..10^5, 12)]);
PROG
(Magma) [p:p in PrimesUpTo(20000)| IsPrime((p+1) div 2) and IsSquarefree(p+2) and #PrimeDivisors(p+2) eq 3]; // Marius A. Burtea, Oct 04 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Oct 04 2019
STATUS
approved