login
A091124
Number of primes of the form 7k+5 less than 10^n.
5
1, 5, 29, 211, 1604, 13105, 110787, 960379, 8474630, 75842174, 686346250, 6267992446, 57677618443, 534157056416
OFFSET
1,2
COMMENTS
Computed by T. D. Noe, Dec 19 2003.
LINKS
Eric Weisstein's World of Mathematics, Modular Prime Counting Function
MATHEMATICA
p = Select[Table[7 i + 5, {i, 0, 10^7}], PrimeQ[#] &]; Table[Count[p, x_ /; x < 10^n], {n, 7}] (* Robert Price, May 28 2019 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Eric W. Weisstein, Dec 19 2003
EXTENSIONS
a(10) from Robert G. Wilson v, Dec 22 2003
a(11)-a(14) from Hiroaki Yamanouchi, Oct 14 2014
STATUS
approved