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!)
A352132 Numbers k such that k, k+4, 3*k+4 and 3*k+8 are all semiprimes. 2
6, 10, 118, 119, 129, 155, 287, 295, 299, 319, 377, 413, 447, 469, 511, 538, 629, 681, 699, 717, 785, 831, 865, 913, 1003, 1073, 1077, 1111, 1115, 1137, 1141, 1145, 1267, 1343, 1345, 1379, 1393, 1437, 1469, 1509, 1687, 1817, 1835, 1919, 1923, 1981, 2167, 2173, 2177, 2195, 2245, 2429, 2479, 2569 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that k and 3*k+4 are both in A175648.
Even terms are 2*k for k in A174920.
LINKS
EXAMPLE
a(4) = 119 is a term because 119 = 7*17, 119+4 = 123 = 3*41, 3*119+4 = 361 = 19^2 and 3*119+8 = 365 = 5*73 are semiprimes.
MAPLE
filter:= proc(x)
numtheory:-bigomega(x) = 2 and numtheory:-bigomega(x+4) = 2 and numtheory:-bigomega(3*x+4) = 2 and numtheory:-bigomega(3*x+8)=2
end proc:
select(filter, [$1..3000]);
MATHEMATICA
okQ[k_] := AllTrue[{k, k+4, 3k+4, 3k+8}, PrimeOmega[#] == 2&];
Select[Range[3000], okQ] (* Jean-François Alcover, May 16 2023 *)
CROSSREFS
Sequence in context: A117310 A174322 A359332 * A124902 A153022 A262081
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Mar 05 2022
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)