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!)
A244373 a(n) = A242107(n+1) * A242107(n-1) * (1 + mod(n,2)). 1
1, 0, 1, 2, -1, 4, 3, 4, 15, -14, 65, 224, -143, 1824, 1441, 12882, 50959, -151420, 898979, 5337220, 20799, 188372002, -733599, 6648401344, 39471457217, -234341035456, 2785299158305, 24790831385826, 98497628929855, 4377139749257604, -12158771603059997 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
Given elliptic curve "58a1" : y^2 + x * y = x^3 - x^2 - x + 1, then the n th multiple of point [0, 1] is [a(n) / A242107(n)^2, A242107(n+2)^2 * A242107(n-4) / A242107(n)^3].
a(n) = a(-n) for all n in Z.
a(n+1) * A242107(n+4) = a(n+3) * A242107(n) for all n in Z.
0 = a(n)*a(n+7) + a(n+1)*a(n+6) - 2*a(n+2)*a(n+5) - 2*a(n+3)*a(n+4) for all n in Z.
0 = 2*a(n)*a(n+6) - a(n+1)*a(n+5) + 2*a(n+2)*a(n+4) - a(n+3)*a(n+3) for all even n in Z.
0 = a(n)*a(n+6) - 2*a(n+1)*a(n+5) + a(n+2)*a(n+4) - 2*a(n+3)*a(n+3) for all odd n in Z.
MATHEMATICA
Join[{1, 0}, RecurrenceTable[{a[n] == (-a[n-6]*a[n-1] + 2*a[n-2]*a[n-5] + 2*a[n-3]*a[n-4])/a[n-7], a[2] == 1, a[3] == 2, a[4] == -1, a[5] == 4, a[6] == 3, a[7] == 4, a[8] == 15}, a, {n, 2, 50}]] (* G. C. Greubel, Aug 05 2018 *)
PROG
(PARI) {a(n) = if( n==0, 1, n=abs(n); numerator( ellmul( ellinit([1, -1, 0, -1, 1]), [0, 1], n)[1]))};
(Magma) I:=[1, 2, -1, 4, 3, 4, 15]; [n le 7 select I[n] else (-Self(n-6)*Self(n -1) + 2*Self(n-2)*Self(n-5) + 2*Self(n-3)*Self(n-4))/Self(n-7): n in [1..30]]; // G. C. Greubel, Aug 05 2018
CROSSREFS
Cf. A242107.
Sequence in context: A324757 A144334 A141210 * A107640 A030065 A362939
KEYWORD
sign
AUTHOR
Michael Somos, Aug 22 2014
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)