|
Search: id:A097811
|
|
|
| A097811 |
|
Numbers n such that n^3 is the sum of two or more consecutive cubes. |
|
+0 2
|
|
| 6, 20, 40, 60, 70, 180, 330, 540, 1155, 1581, 2805, 2856, 3876, 5544, 16830, 27060, 62244, 82680, 90090, 175440, 237456, 249424, 273819, 413820, 431548, 534660, 860706, 1074744, 1205750, 1306620, 1630200, 1764070, 1962820, 1983150
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
These numbers were found by exhaustive search. The sums are not unique; for n=2856, there are two representations. The Mathematica code prints n, the range of cubes in the sum, and the number of cubes in the sum. For instance, 82680^3 equals the sum of 6591 cubes! A faster program was used to check all sums s of consecutive cubes such that s < 2000000^3.
|
|
LINKS
|
K. S. Brown, Sum of Consecutive Nth Powers Equals an Nth Power
|
|
EXAMPLE
|
20 is in this sequence because 11^3 + 12^3 + 13^3 + 14^3 = 20^3.
|
|
MATHEMATICA
|
g[m0_, m1_] := (m1-m0+1)(m0+m1)(m0^2+m1^2+m1-m0)/4; lst={}; Do[n=g[m0, m1]^(1/3); If[IntegerQ[n], Print[{n, m0, m1, m1-m0+1}]; AppendTo[lst, n]], {m1, 2, 14000}, {m0, m1-1, 1, -1}]; Union[lst]
|
|
CROSSREFS
|
Cf. A097812 (n^2 is the sum of consecutive squares).
Adjacent sequences: A097808 A097809 A097810 this_sequence A097812 A097813 A097814
Sequence in context: A106528 A031068 A031052 this_sequence A077539 A002943 A068377
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
T. D. Noe (noe(AT)sspectra.com), Aug 25 2004; Sep 07 2004
|
|
|
Search completed in 0.002 seconds
|