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.

A116145 Squares that are equal to the sum of 5 consecutive cubes.

Original entry on oeis.org

0, 100, 225, 99225, 4708900, 8643600
Offset: 1

Views

Author

Zak Seidov, Apr 14 2007

Keywords

Comments

m^3+(m+1)^3+(m+2)^3+(m+3)^3+(m+4)^3=5*(2+m)*(10+4*m+m^2). Corresponding values of m are -2,0,1,25,96,118.
Using the theory of elliptic curves one can show that there are no other terms. - Jaap Spies, May 28 2007

Crossrefs

Programs

  • Mathematica
    Select[Table[n^3 +(n+1)^3 +(n+2)^3 +(n+3)^3 +(n+4)^3, {n, -2, 1000}] ,IntegerQ[Sqrt[#]]&] (* James C. McMahon, Aug 18 2024 *)