A187104 Numbers n with property that the largest proper divisor of n is a cube.
16, 54, 81, 128, 250, 375, 432, 625, 686, 1024, 1029, 1458, 1715, 2000, 2187, 2401, 2662, 3456, 3993, 4394, 5488, 6591, 6655, 6750, 8192, 9317, 9826, 10125, 10985, 11664, 13718, 14641, 14739, 15379, 16000, 18522, 20577, 21296, 24167, 24334
Offset: 1
Keywords
Links
Crossrefs
Cf. A187101 (largest proper divisor is a square).
Programs
-
Mathematica
Select[Range[54000], MoebiusMu[#] == 0 && IntegerQ[Divisors[#][[-2]]^(1/3)] &] (* Alonso del Arte, Mar 04 2011 *)
-
PARI
lista(nn) = {forcomposite(n=1, nn, if (ispower(divisors(n)[numdiv(n)-1], 3), print1(n, ", ")););} \\ Michel Marcus, Aug 09 2014
Comments