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.

A110087 Numbers k such that sigma(k) - phi(k) > tau(k)^omega(k), where sigma = A000203, phi = A000010, tau = A000005 and omega = A001221.

Original entry on oeis.org

4, 8, 9, 14, 16, 21, 22, 25, 26, 27, 28, 32, 33, 34, 35, 38, 39, 40, 44, 45, 46, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 62, 63, 64, 65, 68, 69, 72, 74, 75, 76, 77, 80, 81, 82, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98, 99, 100, 104, 106, 108, 111, 112, 115, 116, 117, 118
Offset: 1

Views

Author

Reinhard Zumkeller, Jul 11 2005

Keywords

Crossrefs

Programs

  • Haskell
    a110087 n = a110087_list !! (n-1)
    a110087_list = filter (\x -> a051612 x > a110088 x) [1..]
    -- Reinhard Zumkeller, Aug 05 2014
  • Mathematica
    q[k_] := DivisorSigma[1, k] - EulerPhi[k] > DivisorSigma[0, k]^PrimeNu[k]; Select[Range[120], q] (* Amiram Eldar, Sep 15 2024 *)
  • PARI
    is(n)=sigma(n)-eulerphi(n)>numdiv(n)^omega(n) \\ Charles R Greathouse IV, Feb 19 2013
    

Formula

A051612(a(n)) > A110088(a(n)).