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!)
A134105 Complete list of solutions to y^2 = x^3 + 297; sequence gives x values. 7
-6, -2, 3, 4, 12, 34, 48, 1362, 93844 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
For corresponding y values and examples see A134104.
The parameter -297 of the curve corresponds to A200218(1). a(9)=A200216(1). - Artur Jasinski, Nov 29 2011
LINKS
MATHEMATICA
sol[x_] := Solve[y > 0 && x^3 - y^2 == -297, y, Integers];
Reap[For[x = 1, x < 10^5, x++, sx = sol[x]; If[sx != {}, xy = {x, y} /. sx[[1]]; Print[xy]; Sow[xy]]; sx = sol[-x]; If[sx != {}, xy = {-x, y} /. sx[[1]]; Print[xy]; Sow[xy]]]][[2, 1]][[All, 1]] // Sort (* Jean-François Alcover, Feb 07 2020 *)
PROG
(Magma) Sort([ p[1] : p in IntegralPoints(EllipticCurve([0, 297])) ]); /* adapted from A029728 */
(SageMath) [i[0] for i in EllipticCurve([0, 297]).integral_points()] # Seiichi Manyama, Aug 26 2019
CROSSREFS
Sequence in context: A362922 A019662 A330531 * A167509 A011362 A090425
KEYWORD
sign,fini,full
AUTHOR
Klaus Brockhaus, Oct 08 2007
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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)