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!)
A119293 Total number of 2's digits in the first 10^n primes. 7
3, 26, 339, 4070, 55213, 632418, 7133747, 82051293, 1041785731, 12182327373, 137771632675, 1525041000685 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Count the 2's digits in 10^n primes.
LINKS
EXAMPLE
At a(1)=3 there are 3 2's digits in the first 10^1 primes.
MAPLE
A119293 := proc(n) option remember: local k, s, lim: if(n=0)then return 1:fi: lim:=10^n: s:=procname(n-1): for k from 10^(n-1)+1 to lim do s:=s+nops([SearchAll("2", convert(ithprime(k), string))]): od: return s: end: seq(A119293(n), n=1..4); # Nathaniel Johnston, May 09 2011
MATHEMATICA
Table[Count[IntegerDigits[Prime[Range[10^n]]], 2, 2], {n, 6}] (* Robert Price, May 02 2019 *)
CROSSREFS
Sequence in context: A109074 A357337 A227020 * A339298 A366315 A328269
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 June 5 01:34 EDT 2024. Contains 373102 sequences. (Running on oeis4.)