OFFSET
1,1
COMMENTS
Integers greater than 1 and not in A109424.
Contains all primes and squarefree semiprimes (A006881). - Robert Israel, Jan 16 2017
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
The number 24 is in the sequence because sigma(24)=60 (1+2+3+4+6+8+12+24) and bigomega(24)=4 (2,2,2,3) and so sigma(24)/bigomega(24) = 15.
The number 12 is not in the sequence because sigma(12)=28 (1+2+3+4+6+12) and bigomega(12)=3 (2,2,3) and so sigma(12)/bigomega(12) = 28/3.
MAPLE
with(numtheory): a:=proc(n) if type(sigma(n)/bigomega(n), integer)=true then n else fi end: seq(a(n), n=2..110);
MATHEMATICA
PrimeOmega[n_] := Plus @@ FactorInteger[n][[All, 2]]; Select[Range[2, 100], IntegerQ[DivisorSigma[1, #]/PrimeOmega[#]] &] (* Jean-François Alcover, May 02 2013 *)
PROG
(PARI) isok(n) = denominator(sigma(n)/bigomega(n)) == 1; \\ Michel Marcus, Jan 17 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Jun 28 2005
STATUS
approved