login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A165689
Numbers n such that pi(n) = (1/10)*n.
0
64540, 64580, 64610, 64620, 64650, 64690, 64700, 64710, 64720
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
Cf. A057809.
Sequence in context: A234128 A205631 A205333 * A236469 A203712 A061738
KEYWORD
fini,full,nonn
AUTHOR
Farideh Firoozbakht, Oct 06 2009
STATUS
approved