OFFSET
1,1
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?
MATHEMATICA
Select[10 Range[10000], PrimePi[ # ] == 1/10 # &]
PROG
(PARI) forcomposite(n=1, 1e5, if(10*primepi(n) == n, print1(n, ", "))) \\ Altug Alkan, Dec 18 2015
CROSSREFS
KEYWORD
fini,full,nonn
AUTHOR
Farideh Firoozbakht, Oct 06 2009
STATUS
approved