cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A051138 Divisibility sequence associated with elliptic curve y^2 + y = x^3 - x and point (1, 0).

Original entry on oeis.org

0, 1, 1, -1, -5, -4, 29, 129, -65, -3689, -16264, 113689, 2382785, 7001471, -398035821, -7911171596, 43244638645, 6480598259201, 124106986093951, -5987117709349201, -541051130050800400, -4830209396684261199
Offset: 0

Views

Author

Michael Somos, Oct 12 1999

Keywords

Comments

This is a strong divisibility sequence; that is, if n divides m, then a(n) divides a(m) and moreover for all positive integer n,m a(gcd(n, m)) = gcd(a(n), a(m)).
This is a strong elliptic divisibility sequence t_n as given in [Kimberling, p. 16] where x = 1, y = -1, z = -5. - Michael Somos, Jul 07 2014
The elliptic curve y^2 + y = x^3 - x has LMFDB label 37.a1 (Cremona label 37a1). - Michael Somos, Feb 07 2024

Examples

			G.f. = x + x^2 - x^3 - 5*x^4 - 4*x^5 + 29*x^6 + 129*x^7 - 65*x^8 + ...
		

Crossrefs

Programs

Formula

a(n) = (a(n-1) * a(n-3) + a(n-2)^2) / a(n-4).
a(n) = (-a(n-1) * a(n-4) + 5 * a(n-2) * a(n-3)) / a(n-5).
a(2*n + 1) = a(n+2) * a(n)^3 - a(n-1) * a(n+1)^3.
a(2*n) = a(n+2) * a(n) * a(n-1)^2 - a(n) * a(n-2) * a(n+1)^2.
a(-n) = -a(n). a(n) = A006769(2*n). a(n)^2 = A028937(n). |a(n)|^3 = A028939(n) for all n in Z.
0 = a(n)*a(n+4) - a(n+1)*a(n+3) - a(n+2)*a(n+2) for all n in Z. - Michael Somos, Jul 07 2014
0 = a(n)*a(n+5) + a(n+1)*a(n+4) - 5*a(n+2)*a(n+3) for all n in Z. - Michael Somos, Jul 07 2014