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!)
A065715 Number of 4's in decimal expansion of 2^n. 13
0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 2, 1, 1, 0, 3, 0, 0, 2, 1, 1, 2, 0, 2, 3, 2, 1, 1, 1, 1, 2, 3, 1, 0, 0, 3, 0, 3, 1, 3, 2, 2, 2, 2, 1, 2, 2, 3, 0, 1, 2, 2, 3, 2, 1, 3, 1, 4, 3, 3, 2, 1, 0, 3, 4, 3, 4, 4, 0, 2, 2, 4, 3, 2, 3, 4, 3, 2, 0, 2, 4, 3, 3, 4, 5, 3, 2, 3, 1, 3, 1, 3, 3, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,19
COMMENTS
2^10 = 1024 so a(10)=1.
LINKS
MATHEMATICA
Table[ Count[ IntegerDigits[2^n], 4], {n, 0, 100} ]
PROG
(PARI) Count(x, d)= { local(c=0, f); while (x>9, f=x-10*(x\10); if (f==d, c++); x\=10); if (x==d, c++); return(c) }
{ for (n=0, 1000, a=Count(2^n, 4); write("b065715.txt", n, " ", a) ) } \\ Harry J. Smith, Oct 27 2009
(PARI) a(n) = #select(x->(x==4), digits(2^n)); \\ Michel Marcus, Jun 15 2018
(Python)
def A065715(n):
return str(2**n).count('4') # Chai Wah Wu, Feb 14 2020
CROSSREFS
Cf. 0's A027870, 1's A065712, 2's A065710, 3's A065714, 5's A065716, 6's A065717, 7's A065718, 8's A065719, 9's A065744.
Sequence in context: A238857 A253587 A110962 * A180984 A051628 A163540
KEYWORD
nonn,base
AUTHOR
Benoit Cloitre, Dec 04 2001
EXTENSIONS
More terms from Robert G. Wilson v, Dec 07 2001
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 March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)