cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A187104 Numbers n with property that the largest proper divisor of n is a cube.

Original entry on oeis.org

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

Views

Author

Zak Seidov, Mar 04 2011

Keywords

Comments

Corresponding cubes are: 8, 27, 27, 64, 125, 125, 216, 125, 343, 512, 343, 729, 343, 1000, 729, 343, 1331, 1728, 1331, 2197, 2744, 2197, 1331, 3375, 4096, 1331, 4913, 3375, 2197, 5832, 6859, 1331, 4913, 2197, 8000.

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