OFFSET
1,3
COMMENTS
Every nonnegative integer occurs infinitely many times. The j-sequence is A124911.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
1=[5^0/2^0], 2=[5^1/2^1], 3=[5^2/2^3], 4=[5^4/2^7], ...,
so j-sequence=(0,1,2,4,...); k-sequence=(0,1,3,7,...).
MAPLE
N:= 100: # for a(1) .. a(N)
V:=Vector(N, -1): count:= 0:
for j from 0 while count < N do
x:= 5^j;
k0:= max(0, floor(log[2](x/N)));
x:= x/2^(k0-1);
for k from k0 do
x:= x/2;
if x < 1 then break fi;
m:= floor(x);
if m <= N and V[m] = -1 then V[m]:= k; count:= count+1 fi
od od:
convert(V, list); # Robert Israel, Mar 14 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Nov 13 2006
STATUS
approved