login
A025707
Index of 5^n within the sequence of the numbers of the form 5^i*6^j.
2
1, 2, 4, 7, 11, 16, 22, 29, 37, 46, 55, 65, 76, 88, 101, 115, 130, 146, 163, 181, 199, 218, 238, 259, 281, 304, 328, 353, 379, 406, 433, 461, 490, 520, 551, 583, 616, 650, 685, 721, 757, 794, 832, 871, 911, 952, 994, 1037, 1081, 1126, 1171, 1217, 1264, 1312, 1361
OFFSET
0,2
COMMENTS
Positions of zeros in A025659. - R. J. Mathar, Jul 06 2025
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 0..10000
FORMULA
From Amiram Eldar, Nov 13 2025: (Start)
A025622(a(n)) = 5^n.
a(n) = 1 + Sum_{k=0..n} ceiling(k * c), where c = log_6(5) (A153202).
a(n) ~ c * n^2 / 2, where c is defined above. (End)
MATHEMATICA
Accumulate[Table[Ceiling[n * Log[6, 5]], {n, 0, 60}]] + 1 (* Amiram Eldar, Nov 13 2025 *)
PROG
(PARI) a(n)=my(N=1); n+1+sum(i=1, n, logint(N*=5, 6)); \\ Charles R Greathouse IV, Jan 11 2018
(PARI) first(n)=my(s, N=1/5); vector(n+1, i, s+=logint(N*=5, 6)+1) \\ Charles R Greathouse IV, Jan 11 2018
CROSSREFS
KEYWORD
nonn,easy
EXTENSIONS
Offset corrected by Charles R Greathouse IV, Jan 11 2018
STATUS
approved