OFFSET
0,19
COMMENTS
See A034293 for indices of zeros: It is conjectured that the last 0 appears at index 168 = A094776(2). More generally, I conjecture that any value x = 0, 1, 2, 3, ... occurs only a finite number of times N(x) = 23, 35, 28, 26, 41, 37, 34, 26, 34, 38, 33, 41, ... in this sequence, for the last time at a well defined index i(x) = 168, 176, 186, 268, 423, 361, 472, 555, 470, 562, 563, 735, .... - M. F. Hasler, Feb 10 2023, edited by M. F. Hasler, Jul 09 2025
LINKS
M. F. Hasler, Table of n, a(n) for n = 0..10000 (first 1001 terms from Harry J. Smith), Feb 10 2023
FORMULA
a(n) = a(floor(n/10)) + [n == 2 (mod 10)], where [...] is the Iverson bracket. - M. F. Hasler, Feb 10 2023
EXAMPLE
2^31 = 2147483648 so a(31) = 1.
MAPLE
seq(numboccur(2, convert(2^n, base, 10)), n=0..100); # Robert Israel, Jul 09 2025
MATHEMATICA
Table[ Count[ IntegerDigits[2^n], 2], {n, 0, 100} ]
PROG
(PARI) a(n) = #select(x->(x==2), digits(2^n)); \\ Michel Marcus, Jun 15 2018
(Python)
def A065710(n):
return str(2**n).count('2') # Chai Wah Wu, Feb 14 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Benoit Cloitre, Dec 04 2001
EXTENSIONS
More terms from Robert G. Wilson v, Dec 07 2001
STATUS
approved
