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.

A171258 Numbers n such that sigma(n) = 13*phi(n) (where sigma=A000203, phi=A000010).

Original entry on oeis.org

630, 5544, 11160, 18810, 27000, 57000, 80388, 161820, 178020, 182880, 242820, 265608, 388620, 391500, 447678, 465192, 522522, 671760, 690120, 711000, 775170, 826500, 901170, 1051830, 1102290, 1157130, 1418160, 1578330, 1679400, 1812384, 1874520, 1993824
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[2*10^6],DivisorSigma[1,#]==13EulerPhi[#]&] (* Harvey P. Dale, Mar 29 2018 *)
  • PARI
    for(k=1,2e6, sigma(k) - 13*eulerphi(k) || print1(k", "));