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.

A110563 Conductors of positive-rank elliptic curves.

Original entry on oeis.org

37, 43, 53, 57, 58, 61, 65, 77, 79, 82, 83, 88, 89, 91, 92, 99, 101, 102, 106, 112, 117, 118, 121, 122, 123, 124, 128, 129, 130, 131, 135, 136, 138, 141, 142, 143, 145, 148, 152, 153, 154, 155, 156, 158, 160, 162, 163, 166, 170, 171, 172, 175, 176, 184, 185, 189, 190, 192, 196, 197, 198
Offset: 1

Views

Author

Steven Finch, Sep 12 2005

Keywords

Examples

			a(1) = 37, as there are no positive rank elliptic curves over Q of conductor less than 37, but there is an elliptic curve of rank 1 over Q of conductor equal to 37, given by E : y^2 + y = x^3 - x. - _Robin Visser_, Nov 07 2024
		

Crossrefs

Cf. A005788.

Programs

  • Sage
    # Uses Cremona's database of elliptic curves (works for all k < 500000)
    def is_A110563(k):
        curves = [EllipticCurve(i[0]) for i in CremonaDatabase().allcurves(k).values()]
        return any([(E.rank() > 0) for E in curves])
    print([k for k in range(1, 100) if is_A110563(k)])  # Robin Visser, Nov 07 2024

Extensions

More terms added by Robin Visser, Nov 07 2024, taken from J. E. Cremona's database of elliptic curves.