OFFSET
1,1
COMMENTS
Complement of sequence contains numbers whose divisors d have distinct values of sigma(d).
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..10000
EXAMPLE
66 is in sequence because two divisors d (6 and 11) of 66 have the same sigma(d) = 12.
MATHEMATICA
Select[Range[1200], Length[DivisorSigma[1, Divisors[#]]] != Length[Union[DivisorSigma[1, Divisors[#]]]] &] (* T. D. Noe, Feb 10 2012 *)
[Range[1200], Max[Tally[DivisorSigma[1, Divisors[#]]][[;; , 2]]]>1&] (* Harvey P. Dale, Sep 27 2024 *)
PROG
(PARI) ok(n)={my(v=apply(sigma, divisors(n))); #Set(v) < #v} \\ Andrew Howroyd, Aug 01 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Feb 03 2012
STATUS
approved