A195086 Numbers k such that (number of prime factors of k counted with multiplicity) less (number of distinct prime factors of k) = 2.
8, 24, 27, 36, 40, 54, 56, 88, 100, 104, 120, 125, 135, 136, 152, 168, 180, 184, 189, 196, 225, 232, 248, 250, 252, 264, 270, 280, 296, 297, 300, 312, 328, 343, 344, 351, 375, 376, 378, 396, 408, 424, 440, 441, 450, 456, 459, 468, 472, 484, 488
Offset: 1
Keywords
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
- Alfred Rényi, On the density of certain sequences of integers, Publications de l'Institut Mathématique, Vol. 8 (1955), pp. 157-162.
- Index entries for sequences computed from exponents in factorization of n
Crossrefs
Programs
-
Haskell
a195086 n = a195086_list !! (n-1) a195086_list = filter ((== 2) . a046660) [1..] -- Reinhard Zumkeller, Nov 29 2015
-
Mathematica
Select[Range[500],PrimeOmega[#]-PrimeNu[#]==2&]
-
PARI
is(n)=bigomega(n)-omega(n)==2 \\ Charles R Greathouse IV, Sep 14 2015
-
PARI
is(n)=my(f=factor(n)[,2]); vecsum(f)==#f+2 \\ Charles R Greathouse IV, Aug 01 2016
Formula
A046660(a(n)) = 2. - Reinhard Zumkeller, Nov 29 2015
Comments