The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A119297 Total number of 6's digits in the first 10^n primes. 4
0, 10, 315, 3824, 47269, 560677, 7079879, 79433407, 887292243, 9778050835, 110518283071, 1198946387631 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
At a(2)=10 there are 10 6's digits in the first 10^2 primes.
MAPLE
A119297 := 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("6", convert(ithprime(k), string))]): od: return s: end: seq(A119297(n), n=1..4); # Nathaniel Johnston, May 09 2011
MATHEMATICA
Table[Count[IntegerDigits[Prime[Range[10^n]]], 6, 2], {n, 6}] (* Robert Price, May 02 2019 *)
CROSSREFS
Sequence in context: A041425 A217505 A222972 * A259066 A291561 A302933
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 May 28 15:56 EDT 2024. Contains 372916 sequences. (Running on oeis4.)