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.

A067892 Numbers k such that tau(k)*phi(k) > prime(k) where tau(k) = A000005(k).

Original entry on oeis.org

720, 864, 1008, 1080, 1120, 1260, 1296, 1440, 1512, 1584, 1680, 1728, 1760, 1800, 1872, 1980, 2016, 2080, 2160, 2240, 2304, 2376, 2400, 2448, 2464, 2520, 2592, 2640, 2688, 2700, 2720, 2736, 2772, 2800, 2808, 2835, 2880, 2912, 3024, 3080, 3120, 3168
Offset: 1

Views

Author

Benoit Cloitre, Mar 02 2002

Keywords

Crossrefs

Cf. A000005 (tau), A000010 (phi), A062355.

Programs

  • Mathematica
    Select[Range[3200],EulerPhi[#]DivisorSigma[0,#]>Prime[#]&] (* Harvey P. Dale, Nov 17 2018 *)
  • PARI
    is(k) = numdiv(k) * eulerphi(k) > prime(k); \\ Amiram Eldar, Apr 17 2024
    
  • PARI
    lista(pmax) = {my(f, k = 0); forprime(p=1, pmax, k++; f = factor(k); if(numdiv(f) * eulerphi(f) > p, print1(k, ", ")));} \\ Amiram Eldar, Apr 17 2024