OFFSET
1,2
COMMENTS
Numbers with at most one 2 and no 3s or higher in their prime exponents. - Charles R Greathouse IV, Aug 25 2016
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..5000
EXAMPLE
n = 420 = 2*2*3*5*7, 4 distinct prime factors, 24 divisors of which 16 are unitary and 8 are not; ud(n) > nud(n) and 2^(4+1) = 32 is larger than d, the number of divisors.
MATHEMATICA
Select[Range[500], 2^(1 + PrimeNu[#]) > DivisorSigma[0, #] &] (* G. C. Greubel, May 05 2017 *)
PROG
(PARI) is(n)=my(f=factor(n)[, 2], t); for(i=1, #f, if(f[i]>1, if(t||f[i]>2, return(0), t=1))); 1 \\ Charles R Greathouse IV, Sep 17 2015
(PARI) is(n)=n==1 || factorback(factor(n)[, 2])<3 \\ Charles R Greathouse IV, Aug 25 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved