OFFSET
1,1
COMMENTS
Integers greater than 1 and not in A109428.
What is the density of this sequence? - Charles R Greathouse IV, Sep 01 2015
LINKS
Enrique Pérez Herrero, Table of n, a(n) for n = 1..10000
EXAMPLE
The number 12 is in the sequence because sigma(12)=28 (1+2+3+4+6+12) and omega(12)=2 (2,3) and so sigma(12)/omega(12)=14.
The number 36 is not in the sequence because sigma(36)=91 (1+2+3+4+6+9+12+18+36) and omega(36)=2 (2,3) and so sigma(36)/omega(36)=91/2.
MAPLE
with(numtheory): a:=proc(n) if type(sigma(n)/nops(factorset(n)), integer)=true then n else fi end: seq(a(n), n=2..90);
MATHEMATICA
Select[Range[2, 80], IntegerQ[DivisorSigma[1, #]/PrimeNu[#]]&] (* Harvey P. Dale, Aug 13 2021 *)
PROG
(PARI) is(n)=if(n<2, return(0)); my(f=factor(n)); sigma(f)%omega(f)==0 \\ Charles R Greathouse IV, Sep 01 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Jun 28 2005
STATUS
approved
