OFFSET
1,4
COMMENTS
a(n) = A081120(n)/2 if A081120(n) is even, (A081120(n)+1)/2 if A081120(n) is odd (i.e. if n is a cubic number).
Comment from T. D. Noe, Oct 12 2007: In sequences A134108 and A134109 (this entry) dealing with the equation y^2 = x^3 + n, one could note that these are Mordell equations. Here are some related sequences: A054504, A081119, A081120, A081121. The link "Integer points on Mordell curves" has data on 20000 values of n. A134108 and A134109 count only solutions with y >= 0 and can be derived from A081119 and A081120.
LINKS
Jean-François Alcover, Table of n, a(n) for n = 1..10000
J. Gebel, Integer points on Mordell curves [Cached copy, after the original web site tnt.math.se.tmu.ac.jp was shut down in 2017]
Eric Weisstein's World of Mathematics, Mordell Curve
EXAMPLE
MATHEMATICA
a[n_] := With[{an = A081120[[n]]}, If[EvenQ[an], an/2, (an+1)/2]];
a /@ Range[10000] (* Jean-François Alcover, Nov 28 2019 *)
PROG
(Magma) [ #{ Abs(p[2]) : p in IntegralPoints(EllipticCurve([0, -n])) }: n in [1..104] ];
CROSSREFS
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Oct 08 2007, Oct 14 2007
STATUS
approved