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.

A307112 Primitive 3-abundant numbers: Numbers k such that sigma(k) > 3k (A068403) all of whose proper divisors d are 3-deficient numbers having sigma(d) < 3d.

Original entry on oeis.org

180, 420, 504, 660, 780, 1584, 1848, 1872, 1890, 2184, 2352, 2376, 2772, 2856, 3150, 3192, 3276, 4284, 4410, 4788, 4896, 5100, 5292, 5700, 5796, 6864, 6900, 6930, 7344, 7728, 8190, 8208, 8424, 9744, 10296, 10416, 10710, 10944, 11550, 11970, 12012, 12432, 12870
Offset: 1

Views

Author

Amiram Eldar, Mar 25 2019

Keywords

Comments

Analogous to A071395 with abundancy index 3 instead of 2.

References

  • Paul Erdős and János Surányi, Topics in the Theory of Numbers, New York: Springer, 2003, p. 243.

Crossrefs

Programs

  • Mathematica
    Select[Range@50000, DivisorSigma[1, #] > 3 # && Times @@ Boole@ Map[DivisorSigma[1, #] < 3 # &, Most@ Divisors@ #] == 1 &] (* after Michael De Vlieger at A071395 *)