I want to plot an elliptic curve over a finite field using sage mathematical interface with the following commands:
p=2^255-19;
F=Finite Field(p);
C=Elliptic Curve(F,[0,486662,0,1,0]);
plot(C, aspect_ratio = 1);
However due to the size of the curve this generates the error:
'OverflowError: range() result has too many items'.
How can i resolve this problem, or is there any other method to plot this curve?