login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A283597
Numbers n such that both 6n+1 and 6n+7 are semiprimes.
2
8, 14, 19, 41, 42, 43, 48, 49, 59, 74, 84, 85, 88, 92, 93, 97, 108, 113, 116, 132, 139, 144, 148, 149, 157, 158, 159, 162, 163, 189, 190, 193, 198, 209, 210, 211, 222, 223, 224, 225, 226, 227, 231, 234, 235, 250, 251, 259, 264, 272, 280, 285, 306, 307, 315, 316, 317, 318, 319, 320, 323, 326, 327, 340, 345, 349, 358, 361, 368, 376, 386, 387, 388
OFFSET
1,1
COMMENTS
Both n and n+1 are terms in A112775.
LINKS
MAPLE
filter:= n -> numtheory:-bigomega(6*n+1) = 2 and numtheory:-bigomega(6*n+7) = 2:
select(filter, [$1..1000]); # Robert Israel, Dec 23 2024
MATHEMATICA
po[x_]=PrimeOmega[x]; Select[Range[500], po[6# + 1] == po[6# + 7] == 2 &]
PROG
(PARI) for(n=1, 388, if(bigomega(6*n + 1) == 2 && bigomega(6*n + 7) == 2, print1(n, ", "))) \\ Indranil Ghosh, Mar 15 2017
CROSSREFS
Cf. A112771 (6n+1 semiprimes), A112775 (6n+1 is semiprime), A001358 (semiprimes).
Sequence in context: A096229 A231718 A212020 * A112277 A078754 A068638
KEYWORD
nonn
AUTHOR
Zak Seidov, Mar 14 2017
STATUS
approved