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!)
A345744 Numbers k such that k and k+1 are products of at least 5 primes. 1
728, 944, 1215, 1376, 1539, 1700, 2024, 2079, 2295, 2511, 2624, 2672, 3087, 3104, 3159, 3320, 3375, 3807, 3824, 3968, 4095, 4374, 4940, 5103, 5264, 5480, 5535, 5624, 5750, 5775, 5967, 5984, 6075, 6344, 6399, 6560, 6831, 6875, 6975, 6992, 7208, 7424, 7695, 7749, 7856 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Integers k such that k and k+1 are in A046304. - Michel Marcus, Jun 26 2021
LINKS
EXAMPLE
728 = 2^3*7*13 is a product of 5 primes, while 729 = 3^6 is a product of 6 primes. Thus, 728 is in this sequence.
MAPLE
q:= n-> andmap(x-> numtheory[bigomega](x)>4, [n, n+1]):
select(q, [$1..8000])[]; # Alois P. Heinz, Jun 26 2021
MATHEMATICA
Select[Range[10000], Total[Transpose[FactorInteger[#]][[2]]] > 4 && Total[Transpose[FactorInteger[# + 1]][[2]]] > 4 &]
PROG
(Python)
from sympy import factorint
def ok(n): return all(sum(factorint(n+k).values()) > 4 for k in [0, 1])
print(list(filter(ok, range(8000)))) # Michael S. Branicky, Jun 25 2021
(PARI) isok(k) = (bigomega(k) >= 5) && (bigomega(k+1) >= 5); \\ Michel Marcus, Jun 26 2021
CROSSREFS
Sequence in context: A321822 A056084 A191345 * A368590 A023704 A043487
KEYWORD
nonn
AUTHOR
Tanya Khovanova, Jun 25 2021
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 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)