A236469 Primes p such that pi(p) = floor(p/10), where pi is the prime counting function.
64553, 64567, 64577, 64591, 64601, 64661
Offset: 1
Links
- J. B. Rosser. Explicit bounds for some functions of prime numbers. Amer. J. Math. 63 (1941), 211-232.
Programs
-
Maple
KD := proc() local a,b; a:=ithprime(n); b:=floor(a/10); if n=b then RETURN (a);fi; end: seq(KD(), n=1..1000000);
-
Mathematica
Do[p = Prime[n]; k = Floor[p/10]; If[k == n, Print[p]], {n, 10^6}] (* Bajpai *) Select[Prime[Range[6500]], PrimePi[#] == Floor[#/10] &] (* Alonso del Arte, Jan 26 2014 *)
Comments