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.

A115911 Numbers k such that phi(k)*sigma(k) is a triangular number.

Original entry on oeis.org

1, 2, 9, 11, 23, 118, 373, 556, 1332, 2420, 3081, 5251, 7642, 12671, 116836, 127627, 135861, 172676, 198912, 365408, 421902, 426710, 901273, 921736, 954068, 1001396, 1003333, 1006567, 1077452, 1161754, 1162514, 1364225, 1632361
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			phi(1003333)*sigma(1003333) = 1003888529280 = T(1416960).
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^4], IntegerQ @ Sqrt[8 * EulerPhi[#] * DivisorSigma[1, #] + 1] &] (* Amiram Eldar, Sep 16 2019 *)
  • PARI
    isok(n) = ispolygonal(eulerphi(n)*sigma(n), 3); \\ Michel Marcus, Jan 09 2014