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!)
A195069 Numbers k such that (number of prime factors of k counted with multiplicity) less (number of distinct prime factors of k) = 10. 12
2048, 6144, 9216, 10240, 13824, 14336, 20736, 22528, 25600, 26624, 30720, 31104, 34816, 38912, 43008, 46080, 46656, 47104, 50176, 59392, 63488, 64000, 64512, 67584, 69120, 69984, 71680, 75776, 76800, 79872, 83968, 88064, 96256, 96768, 101376, 103680, 104448 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A046660(a(n)) = 10. - Reinhard Zumkeller, Nov 29 2015
LINKS
EXAMPLE
14336 = 2^11 * 7^1, so it has 12 prime factors (counted with multiplicity) and 2 distinct prime factors, and 12-2 = 10.
MAPLE
op(select(n->bigomega(n)-nops(factorset(n))=10, [$1..104448])); # Paolo P. Lava, Jul 03 2018
MATHEMATICA
Select[Range[200000], PrimeOmega[#] - PrimeNu[#] == 10&]
PROG
(Haskell)
a195069 n = a195069_list !! (n-1)
a195069_list = filter ((== 10) . a046660) [1..]
-- Reinhard Zumkeller, Nov 29 2015
(PARI) isok(n) = bigomega(n) - omega(n) == 10; \\ Michel Marcus, Jul 03 2018
CROSSREFS
Sequence in context: A069272 A234881 A220584 * A316499 A135290 A204837
KEYWORD
nonn
AUTHOR
Harvey P. Dale, Sep 08 2011
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 7 13:07 EDT 2024. Contains 372303 sequences. (Running on oeis4.)