The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A372582 Numbers k such that 2*k + 3 and 3*k + 2 are semiprimes. 1
11, 24, 31, 44, 69, 71, 92, 99, 100, 101, 107, 108, 109, 123, 125, 128, 131, 132, 148, 160, 181, 184, 204, 207, 224, 235, 243, 245, 249, 251, 263, 267, 271, 288, 289, 297, 304, 332, 347, 348, 355, 357, 359, 360, 364, 371, 373, 380, 384, 389, 400, 420, 423, 445, 448, 449, 451, 459, 460, 465, 485 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The first k where k, k + 1 and k + 2 are all terms is 99. There is no k where k, k + 1, k + 2 and k + 3 are all terms, because 3 * t + 2 is divisible by 4 for t = one of these.
LINKS
EXAMPLE
a(3) = 31 is a term because 2 * 31 + 3 = 65 = 5 * 13 and 3 * 31 + 2 = 95 = 5 * 19 are both semiprimes.
MAPLE
filter:= k -> numtheory:-bigomega(3*k+2) = 2 and numtheory:-bigomega(2*k+3) = 2:
select(filter, [$1..1000]);
MATHEMATICA
s = {}; Do[If[2 == PrimeOmega[2*k + 3] == PrimeOmega[3*k + 2], AppendTo[s, k]], {k, 10^3}]; s
CROSSREFS
Cf. A001358.
Sequence in context: A086710 A052428 A051909 * A112134 A063307 A213991
KEYWORD
nonn,new
AUTHOR
Zak Seidov and Robert Israel, May 05 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 19 00:35 EDT 2024. Contains 372666 sequences. (Running on oeis4.)