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!)
A175680 Semiprimes that are not Chen semiprimes A175634. 1
4, 14, 26, 38, 46, 62, 74, 77, 86, 94, 95, 106, 121, 122, 134, 143, 146, 158, 161, 166, 178, 185, 194, 203, 206, 218, 221, 226, 254, 262, 278, 302, 314, 321, 326, 329, 334, 339, 341, 346, 362, 365, 371, 381, 386, 395, 398, 422, 437, 446, 451, 458, 466, 471 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Non-Chen semiprimes: semiprimes m such that m+4 is neither a prime or a semiprime.
LINKS
PROG
(Python)
from sympy.ntheory.factor_ import primeomega, isprime
def issemiprime(n): return primeomega(n) == 2
def ok(n): return issemiprime(n) and not (issemiprime(n+4) or isprime(n+4))
print(list(filter(ok, range(1, 472)))) # Michael S. Branicky, Apr 14 2021
CROSSREFS
Sequence in context: A080286 A075381 A030572 * A094320 A200546 A304342
KEYWORD
nonn
AUTHOR
EXTENSIONS
Corrected (234 replaced by 254, 471 inserted) by R. J. Mathar, Aug 10 2010
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)