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.

A165689 Numbers n such that pi(n) = (1/10)*n.

Original entry on oeis.org

64540, 64580, 64610, 64620, 64650, 64690, 64700, 64710, 64720
Offset: 1

Views

Author

Farideh Firoozbakht, Oct 06 2009

Keywords

Comments

A subsequence of A057809. For each positive integer m, set of the numbers n such that pi(n)=(1/10^m)*n is a finite set. I guess that all these sets are nonempty. What is the smallest number n such that pi(n) = (1/100)*n?

Crossrefs

Cf. A057809.

Programs

  • Mathematica
    Select[10 Range[10000], PrimePi[ # ] == 1/10 # &]
  • PARI
    forcomposite(n=1, 1e5, if(10*primepi(n) == n, print1(n, ", "))) \\ Altug Alkan, Dec 18 2015