A240970 Numbers n such that the sum of n consecutive positive cubes is a cube for some initial starting number k.
1, 3, 4, 20, 25, 49, 64, 99, 125, 153, 288, 343, 512, 1000, 1331, 1849, 2197, 2744, 4096, 4913, 6591, 6859, 8000, 10200, 10648, 12167, 13923, 14161, 15625, 17576, 19220, 21456, 21952, 24389, 25201, 29791, 32768, 33124, 39304, 42875, 49776, 50653, 54872, 63001, 64000, 68921, 79507, 85184, 97336
Offset: 1
Examples
11^3 + 12^3 + 13^3 + 14^3 (sum of four consecutive cubes) is a cube (20^3). So 4 is a member of this sequence. Fermat's Last Theorem says that x^3 + y^3 = z^3 has no nontrivial solutions. Thus k^3 + (k+1)^3 = y^3 has no nontrivial solutions, so 2 is not a member of this sequence.
References
- L.E. Dickson, History of the Theory of Numbers, Vol.II: Diophantine Analysis, Dover Publ., Mineola, 2005.
- N. P. Smart, The algorithmic resolution of Diophantine equations, New York: Cambridge University Press, 1998.
Links
- Yuri F. Bilu and Guillaume Hanrot, Solving superelliptic Diophantine equations by Baker's method, Compositio Mathematica, Volume 112, Issue 03, July 1998, pp 273-312.
- K. S. Brown's Mathpages, Sum of Consecutive Nth Powers Equals an Nth Power
- Derek Orr (Math Overflow post), Sum of Consecutive Cubes
- Ben Vitale, Sum of Cubes Equals a Cube
Programs
-
PARI
a(n)=for(k=1,n+10^6, /* the limit here only guarantees the terms given in the sequence */ X=2*k+n-1;s=n*X*(X^2+n^2-1);if(ispower(s,3),return(k))) n=1;while(n<5001,if(a(n),print1(n,", "));n++)
Extensions
More terms from Derek Orr, May 12 2015
Comments