OFFSET
1,2
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..212
MATHEMATICA
r = 0; nn = 10^9;
rad[x_] := Times @@ FactorInteger[x][[All, 1]];
s = Union@ Select[Flatten@ Table[a^2*b^3, {b, Surd[nn, 3]}, {a, Sqrt[nn/b^3]}],
Length@ Select[FactorInteger[#][[All, -1]], # > 2 &] >= 2 &]; nn = Length[s];
Reap[Do[k = s[[i]]; If[# > r, r = #; Sow[r]] &@
Count[Transpose@ {#, k/#} &@ #[[2 ;; Ceiling[Length[#]/2]]] &@ Divisors[k],
_?(And[1 < GCD @@ {##},
rad[#1] == rad[#2],
Mod[#1, #2] != 0,
Mod[#2, #1] != 0] & @@ # &)], {i, nn}] ][[-1, 1]]
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Michael De Vlieger, Dec 25 2024
STATUS
approved