login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A259753 For increasing z > 0, integers, y - x, where x^3 + y^3 = z^3 + 1, with y > x > 1. 2
1, 30, 71, 100, 104, 485, 1169, 705, 887, 1727, 421, 775, 4499, 4260, 3180, 5748, 9719, 307, 6092, 18521, 20304, 18825, 32255, 6174, 33082, 7601, 29400, 17607, 13457, 52487, 1727, 44794, 41772, 76328, 1801, 29707, 80999, 119789, 111226, 132105, 122730, 171071, 123117, 237275 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
It seems to me the sequence can never drop all the way to 1 again.
From Robert Israel, Oct 13 2015: (Start)
There are only finitely many n with a(n) = 1.
Such n correspond to solutions of the Diophantine equation x (2 x^2 + 3 x + 3) = z^3.
Since gcd(x, 2 x^2 + 3 x + 3) = 1 or 3, we get two cases:
if x is not divisible by 3, x = s^3, z = s^3 t^3 where 2 s^6 + 3 s^3 + 3 = t^3,
otherwise x = 9 s^3, z = 3 s t, where 54 s^6 + 9 s^3 + 1 = t^3.
The algebraic curves 2 s^6 + 3 s^3 + 3 = t^3 and 54 s^6 + 9 s^3 + 1 = t^3 both have genus 4, so by Faltings's theorem they have only finitely many rational solutions.
(End)
LINKS
FORMULA
a(n) = A050793(n) - A050792(n). - Robert G. Wilson v, Jul 21 2015
EXAMPLE
10 - 9 = 1 is the first number in the sequence because 10^3 + 9^3 = 12^3 + 1^3 and no other lower z produces a result.
MAPLE
Cubes:= {seq(x^3, x=2..10^4)}:
count:= 0:
for z from 1 to 10^4 do
s:= z^3+1;
M:= map(t -> s-t, select(`<`, Cubes, floor(s/2))) intersect Cubes;
for m in M do
count:= count+1;
y:= simplify(m^(1/3));
x:= simplify((s-m)^(1/3));
A[count]:= y-x;
od
od:
seq(A[i], i=1..count); # Robert Israel, Oct 13 2015
MATHEMATICA
y = 3; lst = {}; While[y < 100001, x = 2; While[x < y, z = (y^3 + x^3 - 1)^(1/3); If[IntegerQ[z], AppendTo[lst, {z, y, x, y - x}]; Print[{z, y, x, y - x}]]; x++]; y++]; Last@ Transpose@ Sort@ lst (* Robert G. Wilson v, Jul 21 2015 and modified Oct 14 2015 *)
PROG
(Python 3.x)
start = 12
end = 100000
print(start, end)
cubes = []
for i in range(0, end):
cubes.append(i**3)
for z in range(start, end):
target = cubes[z]+1
for x in range(2, z):
t = target-cubes[x]
y = int(t**(1/3)+.5)
if cubes[y] == t:
print(target, y, x, z, 1, y-x, '\a')
break
CROSSREFS
Cf. A001235.
Cf. x = A050792, y = A050793, z = A050791 , x^3+y^3 = A050794.
Sequence in context: A071312 A071142 A218327 * A308137 A179321 A039517
KEYWORD
nonn
AUTHOR
David Rabahy, Jul 21 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 12 10:18 EDT 2024. Contains 374244 sequences. (Running on oeis4.)