A195087 Numbers k such that (number of prime factors of k counted with multiplicity) less (number of distinct prime factors of k) = 3.
16, 48, 72, 80, 81, 108, 112, 162, 176, 200, 208, 240, 272, 304, 336, 360, 368, 392, 405, 464, 496, 500, 504, 528, 540, 560, 567, 592, 600, 624, 625, 656, 675, 688, 752, 756, 792, 810, 816, 848, 880, 891, 900, 912, 936, 944, 968, 976
Offset: 1
Keywords
Links
Crossrefs
Programs
-
Haskell
a195087 n = a195087_list !! (n-1) a195087_list = filter ((== 3) . a046660) [1..] -- Reinhard Zumkeller, Nov 29 2015
-
Mathematica
Select[Range[1000],PrimeOmega[#]-PrimeNu[#]==3&]
-
PARI
is(n)=bigomega(n)-omega(n)==3 \\ Charles R Greathouse IV, Sep 14 2015
Formula
A046660(a(n)) = 3. - Reinhard Zumkeller, Nov 29 2015
Comments