OFFSET
0,3
COMMENTS
EXAMPLE
MAPLE
ader:= proc(n) local t;
n * add(t[2]/t[1], t = ifactors(n)[2])
end proc:
f:= proc(n) option remember; local t;
t:= ader(n);
if t < n then procname(t)+1 else 0 fi
end proc:
M:= 25: V:= Array(0..M, -1): count:= 0:
for n from 0 while count <= M do
v:= f(n);
if V[v] = -1 then count:= count+1; V[v]:= n fi;
od:
convert(V, list);
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Israel, May 29 2023
STATUS
approved