A065744 Number of 9's in the decimal expansion of 2^n.
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 3, 2, 1, 1, 1, 2, 1, 2, 2, 1, 2, 1, 0, 0, 0, 1, 3, 3, 2, 3, 5, 3, 3, 3, 0, 0, 0, 2, 3, 1, 1, 1, 2, 2, 3, 3, 2, 1, 0, 2, 5, 2, 3, 2, 0, 2, 2, 3, 3, 1, 4, 3, 2, 1, 2, 2, 4, 4, 2, 6, 8, 3, 3, 3, 1, 1, 0, 2
Offset: 0
Examples
2^12 = 4096 so a(12)=1.
Links
- Harry J. Smith, Table of n, a(n) for n = 0..1000
Crossrefs
Programs
-
Mathematica
Table[ Count[ IntegerDigits[2^n], 9], {n, 0, 100} ]
-
PARI
Count(x,d)={ #select(t->t==d, digits(x)) } a(n) = Count(2^n, 9) \\ Harry J. Smith, Oct 27 2009
-
Python
def A065744(n): return str(2**n).count('9') # Chai Wah Wu, Feb 14 2020
Extensions
More terms from Robert G. Wilson v, Dec 07 2001
Comments