cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A206030 Numbers m with at least two divisors d with the same sigma(d).

Original entry on oeis.org

66, 132, 170, 198, 210, 260, 264, 322, 330, 340, 345, 396, 400, 420, 456, 462, 510, 520, 528, 594, 630, 644, 651, 660, 680, 690, 726, 780, 792, 800, 820, 840, 850, 858, 912, 924, 966, 990, 1020, 1035, 1040, 1050, 1056, 1066, 1092, 1122, 1155, 1160, 1188
Offset: 1

Views

Author

Jaroslav Krizek, Feb 03 2012

Keywords

Comments

Complement of sequence contains numbers whose divisors d have distinct values of sigma(d).

Examples

			66 is in sequence because two divisors d (6 and 11) of 66 have the same sigma(d) = 12.
		

Crossrefs

Programs

  • 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 *)
  • PARI
    ok(n)={my(v=apply(sigma, divisors(n))); #Set(v) < #v} \\ Andrew Howroyd, Aug 01 2018