OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3) = 14 is a term because 14 = 2 * 7 is a semiprime and 6 * 14 + 1 = 85 = 5 * 17 is also a semiprime.
MAPLE
select(t -> numtheory:-bigomega(t) = 2 and numtheory:-bigomega(6*t+1)=2, [$4..1000]);
MATHEMATICA
s = {}; Do[If[{2, 2} == PrimeOmega[{k, 6*k + 1}], AppendTo[s, k]], {k, 1000}] ; s
PROG
(PARI) isok(k) = (bigomega(k)==2) && (bigomega(6*k+1)==2); \\ Michel Marcus, Feb 26 2025
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Zak Seidov and Robert Israel, Feb 24 2025
STATUS
approved