OFFSET
0,2
COMMENTS
It appears that a(n) is divisible by 2 iff n is odd, and by 3 iff n >= 2 is even. - Robert Israel, Jun 08 2024
LINKS
Robert Israel, Table of n, a(n) for n = 0..200
MAPLE
R:= 1: d:= 1: count:= 1: x:= 1:
for i from 2 while count < 80 do
if igcd(i, x) = 1 then
di:= numtheory:-tau(i);
if di >= d then x:= i; d:= di; R:= R, i; count:= count+1 fi
fi
od:
R; # Robert Israel, Jun 07 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Oct 21 2002
EXTENSIONS
More terms from Sascha Kurz, Jan 22 2003
Definition clarified by Robert Israel, Jun 07 2024
STATUS
approved