login
A025695
Index of 2^n within the sequence of the numbers of the form 2^i*10^j.
1
1, 2, 3, 4, 6, 8, 10, 13, 16, 19, 23, 27, 31, 35, 40, 45, 50, 56, 62, 68, 75, 82, 89, 96, 104, 112, 120, 129, 138, 147, 157, 167, 177, 187, 198, 209, 220, 232, 244, 256, 269, 282, 295, 308, 322, 336, 350, 365, 380, 395, 411, 427, 443, 459, 476, 493, 510, 528, 546, 564, 583
OFFSET
0,2
COMMENTS
Positions of zeros in A025684. - R. J. Mathar, Jul 06 2025
LINKS
FORMULA
From Amiram Eldar, Nov 13 2025: (Start)
A025612(a(n)) = 2^n.
a(n) = 1 + Sum_{k=0..n} ceiling(k * c), where c = log_10(2) (A007524).
a(n) ~ c * n^2 / 2, where c is defined above. (End)
MATHEMATICA
Accumulate[Table[Ceiling[n * Log10[2]], {n, 0, 60}]] + 1 (* Amiram Eldar, Nov 13 2025 *)
CROSSREFS
KEYWORD
nonn,easy
EXTENSIONS
Offset corrected by Amiram Eldar, Nov 13 2025
STATUS
approved