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.

A020477 Numbers whose sum of divisors is a cube.

Original entry on oeis.org

1, 7, 102, 110, 142, 159, 187, 381, 690, 714, 770, 994, 1034, 1054, 1065, 1113, 1164, 1173, 1265, 1293, 1309, 1633, 1643, 2667, 3638, 3937, 4505, 4830, 4855, 5373, 5671, 5730, 5997, 6486, 6517, 6906, 7130, 7238, 7378, 7455, 7755, 7905, 8148, 8211, 8426
Offset: 1

Views

Author

Keywords

Examples

			Factor 381; divisors are 1, 3, 127, 381. Sum is 512. Integral cube root of n is 8. So 381 is in sequence.
		

References

  • David Wells, Curious and Interesting Numbers (Revised), Penguin Books, page 118.

Crossrefs

Programs

  • Mathematica
    Do[If[IntegerQ[DivisorSigma[1, n]^(1/3)], Print[n]], {n, 1, 10^4}]
    Select[Range[10000],IntegerQ[Surd[DivisorSigma[1,#],3]]&] (* Harvey P. Dale, Nov 16 2014 *)
  • PARI
    isok(n) = ispower(sigma(n), 3); \\ Michel Marcus, Jul 03 2014