login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A120931
Values y corresponding to least x (A120930) of primitive quadruple(n,x,y,z),n<x<y<z satisfying n^3 + x^3 + y^3 = z^3.
2
8, 40, 5, 22, 123, 33, 17, 1744, 116, 323, 27, 53, 104, 70, 49, 41, 86, 21, 90, 79, 84, 54, 300, 382, 86, 78, 37, 75, 44, 427, 72, 85, 92, 65, 202, 61, 1331, 66, 156, 366, 319, 205, 1165, 118, 199, 148, 295, 491, 263, 64, 477, 3327, 194, 163, 296, 210, 180, 69, 148
OFFSET
1,1
PROG
(PARI) A(n)=local(x, y, z); x=n+1; while(1, y=x+1; while(n^3+x^3+y^3>=(y+1)^3, if(ispower(n^3+x^3+y^3, 3, &z) && (gcd([n, x, y, z])==1), return(y)); y++; ); x++; ); \\ Martin Fuller, Aug 11 2006
CROSSREFS
Sequence in context: A353211 A319362 A154425 * A213345 A207360 A226904
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Jul 16 2006
EXTENSIONS
More terms from Martin Fuller, Aug 11 2006
Corrected by R. J. Mathar, Nov 25 2006
STATUS
approved