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!)
A119300 Total number of 9's digits in the first 10^n primes. 20
2, 33, 431, 6318, 72062, 806674, 9004550, 104220797, 1131743629, 12266783460, 131900123107, 1447662128808 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
At a(3)=431 there are 431 9's digits in the first 10^3 = 1000 primes.
MAPLE
A119300 := proc(n) option remember: local k, s, lim: if(n=0)then return 0:fi: lim:=10^n: s:=procname(n-1): for k from 10^(n-1)+1 to lim do s:=s+nops([SearchAll("9", convert(ithprime(k), string))]): od: return s: end: seq(A119300(n), n=1..4); # Nathaniel Johnston, May 09 2011
MATHEMATICA
cnt=0; k=0; Table[While[k++; cnt=cnt+DigitCount[Prime[k], 10, 9]; k < 10^n]; cnt, {n, 5}] (* T. D. Noe, May 10 2011 *)
CROSSREFS
Sequence in context: A231595 A100023 A336969 * A078262 A118117 A231794
KEYWORD
more,nonn,base
AUTHOR
Enoch Haga, May 13 2006
EXTENSIONS
a(8)-a(11) from Robert Price, Nov 05 2013
a(12) from Marek Hubal, Mar 04 2019
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)