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!)
A126210 Number of 8's in decimal expansion of 8^n. 6
0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 2, 1, 4, 1, 4, 1, 3, 4, 4, 1, 3, 3, 2, 2, 3, 0, 2, 4, 1, 3, 1, 1, 4, 3, 3, 3, 4, 5, 3, 4, 4, 5, 4, 4, 3, 5, 7, 4, 10, 5, 3, 7, 7, 4, 8, 3, 6, 7, 4, 10, 6, 5, 3, 5, 10, 8, 9, 7, 10, 5, 12, 6, 10, 5, 7, 2, 9, 11, 9, 11, 7, 7, 5, 2, 9, 6, 7, 5, 13, 12, 10, 8, 4, 9, 6, 6, 10, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,12
LINKS
MAPLE
P:=proc(n) local i, k, x, y, w, cont; y:=8; k:=y; for i from 0 by 1 to n do x:=y^i; cont:=0; while x>0 do w:=x-trunc(x/10)*10; if w=k then cont:=cont+1; fi; x:=trunc(x/10); od; print(cont); od; end: P(100);
MATHEMATICA
DigitCount[8^Range[0, 100], 10, 8] (* Harvey P. Dale, Jan 28 2013 *)
CROSSREFS
Sequence in context: A180339 A079276 A210445 * A040005 A193306 A053578
KEYWORD
base,nonn
AUTHOR
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 13 07:22 EDT 2024. Contains 372498 sequences. (Running on oeis4.)