login
A092129
Numbers k such that k, k+2, k+4, k+6, k+8, k+10, k+12 are semiprimes.
12
3091, 8129, 8131, 9983, 9985, 55559, 92603, 99443, 99445, 112709, 132077, 132079, 182749, 190937, 190939, 209479, 237449, 237451, 239089, 249689, 296779, 300449, 313411, 401429, 401431, 441677, 441679, 452639, 452641, 547157, 604487, 604489, 631201, 651001, 751493, 772501
OFFSET
1,1
COMMENTS
Semiprimes in arithmetic progression. All terms are odd, see also A056809.
Exactly one of the numbers in these arithmetic progressions is of the form 7*p, p prime. - David A. Corneth, Sep 11 2025
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000 (first 500 terms from Robert Israel)
David A. Corneth, PARI programs
MAPLE
R:= NULL: count:= 0: state:= 0:
for n from 1 by 2 while count < 40 do
if numtheory:-bigomega(n) = 2 then state:= state+1 else state:= 0 fi;
if state >= 7 then R:= R, n-12; count:= count+1 fi
od:
R; # Robert Israel, Sep 11 2025
MATHEMATICA
PrimeFactorExponentsAdded[n_] := Plus @@ Flatten[Table[ #[[2]], {1}] & /@ FactorInteger[n]]; Select[ Range[ 631200], PrimeFactorExponentsAdded[ # ] == PrimeFactorExponentsAdded[ # + 2] == PrimeFactorExponentsAdded[ # + 4] == PrimeFactorExponentsAdded[ # + 6] == PrimeFactorExponentsAdded[ # + 8] == PrimeFactorExponentsAdded[ # + 10] == PrimeFactorExponentsAdded[ # + 12] == 2 &] (* Robert G. Wilson v, Feb 24 2004 *)
Select[Range[610000], Union[PrimeOmega[#+Range[0, 12, 2]]]=={2}&] (* Harvey P. Dale, Oct 14 2018 *)
PROG
(PARI) \\ See Corneth link
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Feb 22 2004
EXTENSIONS
More terms from Don Reble, Feb 23 2004
More terms from Robert G. Wilson v, Feb 24 2004
STATUS
approved