OFFSET
0,2
COMMENTS
Positions of zeros in A025680. - R. J. Mathar, Jul 06 2025
LINKS
Robert Israel, Table of n, a(n) for n = 0..10000
FORMULA
From Amiram Eldar, Nov 13 2025: (Start)
A025628(a(n)) = 6^n.
a(n) = 1 + Sum_{k=0..n} ceiling(k * c), where c = log_9(6) (A153495).
a(n) ~ c * n^2 / 2, where c is defined above. (End)
MAPLE
with(priqueue):
initialize(PQ):
insert([-1, 0, 0], PQ):
count:= 0: R:= NULL:
for i from 1 while count < 100 do
v:= extract(PQ);
if v[3] = 0 then R:= R, i; count:= count+1; insert([v[1]*6, v[2]+1, 0], PQ);
insert([v[1]*9, v[2], v[3]+1], PQ)
od:
R; # Robert Israel, Jan 21 2024
MATHEMATICA
Accumulate[Table[Ceiling[n * Log[9, 6]], {n, 0, 60}]] + 1 (* Amiram Eldar, Nov 13 2025 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Offset corrected by Amiram Eldar, Nov 13 2025
STATUS
approved
