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.

A073455 Numbers n such that to phi(n) = pi(n)-1.

Original entry on oeis.org

6, 12, 18, 24, 42, 60
Offset: 1

Views

Author

Labos Elemer, Aug 02 2002

Keywords

Examples

			9 primes below 24 = {2,3,5,7,11,13,17,19,23}; RRS[24]={1,5,7,11,13,17,19,23}, so 24 is here.
		

Crossrefs

Programs

  • Mathematica
    Do[s=EulerPhi[n]-PrimePi[n]; If[Equal[s, -1], Print[n]], {n, 1, 10000}]