login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A379554
Records in A379552.
0
1, 2, 3, 4, 6, 8, 9, 10, 12, 14, 18, 20, 21, 24, 26, 27, 28, 30, 32, 36, 40, 42, 48, 52, 54, 56, 60, 64, 72, 78, 80, 90, 96, 100, 108, 114, 120, 126, 128, 135, 136, 144, 150, 160, 168, 170, 176, 180, 186, 192, 200, 204, 210, 224, 240, 248, 252, 264, 272, 280, 288
OFFSET
1,2
LINKS
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