login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A231792 Count of the first 10^n primes containing at least one 5's digit. 10
1, 15, 292, 3365, 39360, 464466, 5262871, 56702805, 607358478, 6463119473, 68932485429 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) ~ 10^n. - Charles R Greathouse IV, May 21 2014
EXAMPLE
a(2)=15 because there are 15 primes not greater than 541 (the 100th prime) that contain a 5's digit. Namely: 5, 53 59, 151, 157, 251, 257, 353, 359, 457, 503, 509, 521, 523, 541.
MATHEMATICA
cnt = 0; Table[Do[p = Prime[k]; If[MemberQ[IntegerDigits[p], 5], cnt++], {k, 10^(n - 1) + 1, 10^n}]; cnt, {n, 5}] (* T. D. Noe, Nov 13 2013 *)
CROSSREFS
Sequence in context: A160397 A303653 A185809 * A201029 A201341 A144349
KEYWORD
more,nonn,base
AUTHOR
Robert Price, Nov 13 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)