The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A137230 Composite numbers that are divisible by the number of their prime factors (counted with multiplicity). 3
4, 6, 10, 12, 14, 16, 18, 22, 24, 26, 27, 30, 34, 36, 38, 40, 42, 45, 46, 56, 58, 60, 62, 63, 66, 74, 75, 78, 80, 82, 84, 86, 88, 94, 96, 99, 100, 102, 104, 105, 106, 114, 117, 118, 120, 122, 132, 134, 136, 138, 140, 142, 144, 146, 147, 152, 153, 156, 158, 165, 166 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
k is a term iff {k == 0 (mod BigOmega(k)) and k NOT prime}.
This sequence is obtained from A074946 by excluding all primes from that sequence.
LINKS
Eric Weisstein's World of Mathematics, Prime Factor.
EXAMPLE
k = 3; not a term because not a prime.
k = 4; a term because satisfies both k == 0 (mod bigomega(k)) and k NOT prime.
MATHEMATICA
Select[Range[200], CompositeQ[#] && Divisible[#, PrimeOmega[#]]&] (* Jean-François Alcover, Nov 11 2016 *)
PROG
(PARI) isok(c) = (c>1) && !isprime(c) && !(c % bigomega(c)); \\ Michel Marcus, Feb 28 2023
CROSSREFS
Sequence in context: A287342 A309177 A163164 * A369896 A283564 A348005
KEYWORD
nonn
AUTHOR
William A. Tedeschi, Mar 07 2008
EXTENSIONS
Edited by Michel Marcus, Feb 28 2023
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 May 14 12:18 EDT 2024. Contains 372533 sequences. (Running on oeis4.)