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!)
A119299 Total number of 8's digits in the first 10^n primes. 5
0, 8, 195, 3763, 47174, 558842, 6541723, 79273100, 882188472, 9770202402, 106927984586, 1198303968170 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
At a(2)=8 there are 8 8's digits in the first 10^2 primes.
MAPLE
A119299 := 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("8", convert(ithprime(k), string))]): od: return s: end: seq(A119299(n), n=1..4); # Nathaniel Johnston, May 09 2011
MATHEMATICA
Table[Total[DigitCount[#, 10, 8]&/@Prime[Range[10^n]]], {n, 7}] (* Harvey P. Dale, Apr 05 2011 *)
CROSSREFS
Sequence in context: A103500 A232911 A338806 * A363986 A024287 A208703
KEYWORD
more,nonn,base
AUTHOR
Enoch Haga, May 13 2006
EXTENSIONS
Offset changed from 0 to 1 by Nathaniel Johnston, May 09 2011
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 July 22 08:19 EDT 2024. Contains 374485 sequences. (Running on oeis4.)