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.

A068578 Numbers k such that tau(k)*sigma(k) > k*phi(k).

Original entry on oeis.org

2, 3, 4, 6, 8, 10, 12, 14, 16, 18, 20, 24, 30, 36, 40, 42, 48, 60, 72, 84, 90, 120, 180
Offset: 1

Views

Author

Benoit Cloitre, Mar 26 2002

Keywords

Comments

Numbers k such that A064840(k) > A002618(k).

Crossrefs

Programs

  • Mathematica
    Select[Range[180], DivisorSigma[0, #] * DivisorSigma[1, #] > # * EulerPhi[#] &] (* Amiram Eldar, Jun 12 2022 *)
  • PARI
    is(k) = {my(f=factor(k)); numdiv(k)*sigma(k) > k*eulerphi(k); } \\ Jinyuan Wang, Apr 05 2020