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!)
A307341 Products of four primes, not all distinct. 2
16, 24, 36, 40, 54, 56, 60, 81, 84, 88, 90, 100, 104, 126, 132, 135, 136, 140, 150, 152, 156, 184, 189, 196, 198, 204, 220, 225, 228, 232, 234, 248, 250, 260, 276, 294, 296, 297, 306, 308, 315, 328, 340, 342, 344, 348, 350, 351, 364, 372, 375, 376, 380, 414 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers with exactly four prime factors (counted with multiplicity) but fewer than four distinct prime factors.
Numbers n such that bigomega(n) = 4 and omega(n) < 4.
LINKS
PROG
(Python 3)
import sympy
def bigomega(n): return sympy.primeomega(n)
def omega(n): return len(sympy.primefactors(n))
print([n for n in range(1, 1000) if bigomega(n) == 4 and omega(n) < 4])
(PARI) isok(n) = (bigomega(n) == 4) && (omega(n) < 4); \\ Michel Marcus, Apr 03 2019
CROSSREFS
Setwise difference of A014613 and A046386.
Union of A030514, A065036, A085986 and A085987.
Sequence in context: A110893 A014613 A323350 * A046370 A103248 A286195
KEYWORD
easy,nonn
AUTHOR
Kalle Siukola, Apr 02 2019
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 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)