A131643 Cubes that are also sums of three or more consecutive positive cubes.
216, 8000, 64000, 216000, 343000, 5832000, 35937000, 157464000, 1540798875, 3951805941, 22069810125, 23295638016, 58230605376, 170400029184, 4767078987000, 19814511816000, 241152896222784, 565199024832000, 731189187729000, 5399901725184000, 13389040129314816, 15517248640897024
Offset: 1
Keywords
Examples
216 = 27 + 64 + 125. Note that "positive" is needed in the definition, otherwise the sequence would contain 8 = (-1)^3 + 0^3 + 1^3 + 2^3. - _N. J. A. Sloane_, Dec 19 2015
Links
- Donovan Johnson, Table of n, a(n) for n = 1..55 (terms < 2*10^23)
Crossrefs
a(n) = A097811(n)^3. - Donovan Johnson, Nov 09 2012
Programs
-
Mathematica
Select[Union[ Flatten[Table[ Plus @@ Table[i^3, {i, k, j}], {k, 1000}, {j, k + 1, 1000}]]], # <= 1000^3 && IntegerQ[ #^(1/3)] &]
Extensions
More terms from R. J. Mathar, Sep 14 2007
More terms from Donovan Johnson, Mar 09 2008
Name edited by Jon E. Schoenfield, Dec 07 2015
Comments