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.

A063831 Sum of cubes of divisors is a square.

Original entry on oeis.org

1, 2, 345, 690, 47196, 46248900, 53262468, 71315748, 140553735, 188194335, 215515727, 281107470, 288564647, 292978595, 310129096, 376388670, 431031454, 577129294, 585957190, 1474108335, 2133051720, 2489605188, 2948216670, 3270679304, 4043104611, 5142743032
Offset: 1

Views

Author

Jason Earls, Aug 21 2001

Keywords

Examples

			345 is in the sequence since sigma_3(345) = 6552^2 is a square.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^5], IntegerQ[ Sqrt[ DivisorSigma[3,#] ] ] &] (* Amiram Eldar, Dec 06 2018 *)
  • PARI
    for(n=1,10^5, if(issquare(sigma(n,3)),print1(n, ", ")))

Extensions

More terms from Thomas Baruchel, Oct 20 2003
More terms from Sean A. Irvine, Sep 24 2009
a(24)-a(26) from Amiram Eldar, Dec 06 2018