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.

A062784 Numbers k such that sigma(k) + phi(k) is a perfect square.

Original entry on oeis.org

2, 4, 56, 110, 125, 161, 287, 391, 418, 423, 511, 588, 609, 675, 721, 799, 910, 935, 1048, 1057, 1102, 1130, 1281, 1351, 1457, 1485, 1630, 1716, 1799, 1826, 1921, 2047, 2060, 2177, 2255, 2378, 2403, 2449, 2457, 2472, 3199, 3266, 3915, 4010, 4376, 4417
Offset: 1

Views

Author

Jason Earls, Jul 18 2001

Keywords

Crossrefs

Cf. A065387.

Programs

  • Mathematica
    Select[Range[4500],IntegerQ[Sqrt[DivisorSigma[1,#]+EulerPhi[#]]]&] (* Harvey P. Dale, Jan 18 2012 *)
  • PARI
    select(k->issquare(sigma(k) + eulerphi(k)), [1..5000])