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!)
A285508 Numbers with exactly three prime factors, not all distinct. 10
8, 12, 18, 20, 27, 28, 44, 45, 50, 52, 63, 68, 75, 76, 92, 98, 99, 116, 117, 124, 125, 147, 148, 153, 164, 171, 172, 175, 188, 207, 212, 236, 242, 244, 245, 261, 268, 275, 279, 284, 292, 316, 325, 332, 333, 338, 343, 356, 363, 369, 387, 388, 404, 412, 423, 425, 428, 436, 452 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Cubes of primes together with products of a prime and the square of a different prime.
Numbers k for which A001222(k) = 3, but A001221(k) < 3. - Antti Karttunen, Apr 20 2017
LINKS
Kalle Siukola, Python program
MATHEMATICA
Select[Range[452], PrimeOmega[#] == 3 && PrimeNu[#] < 3 &] (* Giovanni Resta, Apr 20 2017 *)
PROG
(PARI)
isA285508(n) = ((omega(n) < 3) && (bigomega(n) == 3));
n=0; k=1; while(k <= 10000, n=n+1; if(isA285508(n), write("b285508.txt", k, " ", n); k=k+1));
\\ Antti Karttunen, Apr 20 2017
(Scheme, with my IntSeq-library) (define A285508 (MATCHING-POS 1 1 (lambda (n) (and (= 3 (A001222 n)) (< (A001221 n) 3))))) ;; Antti Karttunen, Apr 20 2017
(Python)
from sympy import primefactors, primeomega
def omega(n): return len(primefactors(n))
def bigomega(n): return primeomega(n)
print([n for n in range(1, 501) if omega(n)<3 and bigomega(n) == 3]) # Indranil Ghosh, Apr 20 2017 and Kalle Siukola, Oct 25 2023
CROSSREFS
Setwise difference of A014612 and A007304.
Union of A030078 and A054753.
Sequence in context: A228056 A187042 A370650 * A054397 A075818 A090738
KEYWORD
easy,nonn
AUTHOR
Kalle Siukola, Apr 20 2017
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 16 16:35 EDT 2024. Contains 371749 sequences. (Running on oeis4.)