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.

A116108 Squares that are equal to the sum of 3 consecutive cubes.

Original entry on oeis.org

0, 9, 36, 41616
Offset: 1

Views

Author

Zak Seidov, Apr 14 2007

Keywords

Comments

m^3+(m+1)^3+(m+2)^3=3(1+m)*(3+2*m+m^2). Corresponding values of m are -1,0,1,23.
The equation s^2 = 3c^3 + 6c can be transformed using the substitution X = 3c, Y = 3s into Y^2 = X^3 + 18X, a form of the Weierstrass equation of an elliptic curve: Y^2 = X^3 + aX^2 + bX + c, with a = c = 0. We can now use the Sage program to show that there are no other integer solutions. - Jaap Spies, May 27 2007
Confirmed by MAGMA - see code below. - Warut Roonguthai, May 28 2007
That there are no other integer solutions is a theorem of Uchiyama, rediscovered by Cassels. For n consecutive cubes summing to a square, see A218979. - Jonathan Sondow, Apr 03 2014

Crossrefs

Programs

  • Magma
    IntegralPoints(EllipticCurve([18,0]));
  • Mathematica
    Select[Total/@Partition[Range[-2,200]^3,3,1],IntegerQ[Sqrt[#]]&] (* Harvey P. Dale, Aug 08 2015 *)