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.

A116002 n*phi(n)*phi(phi(n)) is a square.

Original entry on oeis.org

1, 8, 27, 32, 108, 128, 243, 250, 432, 512, 686, 972, 1000, 1331, 1728, 2048, 2187, 2197, 2744, 3375, 3888, 4000, 5324, 6174, 6250, 6912, 8192, 8748, 8788, 9826, 10976, 13500, 15552, 16000, 19683, 19773, 21296, 24696, 25000, 27648, 30375
Offset: 1

Views

Author

Giovanni Resta, Feb 13 2006

Keywords

Examples

			15552*phi(15552)*phi(phi(15552))=373248^2.
		

Crossrefs

Cf. A055744.

Programs

  • Mathematica
    esQ[n_]:=Module[{e=EulerPhi[n]},IntegerQ[Sqrt[n e EulerPhi[e]]]]; Select[Range[31000],esQ] (* Harvey P. Dale, Dec 16 2011 *)