A little item for anyone who wants to test their new exaflop machine. Given some $\operatorname{prime}(n)/\log\operatorname{prime}(n)={}$as near as possible to a prime $q,$ for both log base $10$ and base $e,$ what is $\operatorname{prime}(n)$? Near as possible means the minimum difference from either above or below $q;$ thus $126.9999$ or $127.00001$ would be considered to be very close to prime $127.$
Asked
Active
Viewed 54 times
0
Select[Range[1000], PrimeQ[Round[Prime[#]/Log[Prime[#]]]] && PrimeQ[Round[Prime[#]/Log[10, Prime[#]]]] &]– Mr. Brooks May 03 '18 at 22:12