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.

A171257 Numbers n such that sigma(n) = 11*phi(n) (where sigma=A000203, phi=A000010).

Original entry on oeis.org

2580, 16770, 18630, 28896, 35970, 61404, 66024, 147576, 163944, 215124, 224010, 296184, 399126, 408672, 443394, 464340, 476010, 574308, 856086, 862752, 868428, 931224, 957348, 1004910, 1110186, 1496610, 1721720, 1723290, 1833348, 1971288, 2139852, 2234790
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[10^6], DivisorSigma[1, #] == 11 * EulerPhi[#] &] (* Amiram Eldar, Dec 04 2019 *)
  • PARI
    for(k=1,2e6, sigma(k) - 11*eulerphi(k) || print1(k", "));