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.

Showing 1-4 of 4 results.

A005788 Conductors of elliptic curves.

Original entry on oeis.org

11, 14, 15, 17, 19, 20, 21, 24, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 69, 70, 72, 73, 75, 76, 77, 78
Offset: 1

Views

Author

Keywords

Comments

By the modularity of elliptic curves over Q (proved by Breuil-Conrad-Diamond-Taylor), these are equivalently the positive integers k such that there exists a rational weight 2 newform for Gamma_0(k). - Robin Visser, Nov 04 2024

Examples

			a(1) = 11, as there are no elliptic curves over Q of conductor less than 11, but there are exactly three elliptic curves over Q of conductor equal to 11, for example E : y^2 + y = x^3 - x^2. - _Robin Visser_, Nov 04 2024
		

References

  • B. J. Birch and W. Kuyk, eds., Modular Functions of One Variable IV (Antwerp, 1972), Lect. Notes Math. 476 (1975), see pp. 82ff.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Sage
    # Uses Cremona's database of elliptic curves (works for all k < 500000)
    def is_A005788(k):
        return CremonaDatabase().number_of_curves(k) > 0
    print([k for k in range(1, 1000) if is_A005788(k)])  # Robin Visser, Nov 04 2024

A110620 Number of elliptic curves (up to isomorphism) of conductor n.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 6, 8, 0, 4, 0, 3, 4, 6, 0, 0, 6, 0, 5, 4, 0, 0, 8, 0, 4, 4, 4, 3, 4, 4, 5, 4, 4, 0, 6, 1, 2, 8, 2, 0, 6, 4, 8, 2, 2, 1, 6, 4, 6, 7, 3, 0, 0, 1, 4, 6, 4, 2, 12, 1, 0, 2, 4, 0, 6, 2, 0, 12, 1, 6, 4, 1, 8, 0, 2, 1, 6, 2, 0, 0, 1, 3, 16, 4, 3, 0, 2, 0, 8, 0, 6, 11, 4, 1, 12, 0
Offset: 1

Views

Author

Steven Finch, Sep 14 2005

Keywords

Examples

			a(11)=3 since there are three non-isomorphic elliptic curves of conductor eleven, represented by the minimal models y^2+y=x^3-x^2-10*x-20, y^2+y=x^3-x^2-7820*x-263580 and y^2+y=x^3-x^2.
		

Crossrefs

Programs

  • Sage
    # Uses Cremona's database of elliptic curves (works for all n < 500000)
    def a(n):
        return CremonaDatabase().number_of_curves(n)  # Robin Visser, Nov 04 2024

A217055 Prime numbers which are conductors of elliptic curves.

Original entry on oeis.org

11, 17, 19, 37, 43, 53, 61, 67, 73, 79, 83, 89, 101, 109, 113, 131, 139, 163, 179, 197, 229, 233, 269, 277, 307, 331, 347, 353, 359, 373, 389, 431, 433, 443, 467, 503, 557, 563, 571, 593, 643, 659, 677, 701, 709, 733, 739, 797, 811, 827, 829, 997, 1019, 1051
Offset: 1

Views

Author

Gene Ward Smith, Sep 25 2012

Keywords

Comments

Taken from the data by Armand Brumer and Oisin McGuinness listing 310716 elliptic curves with prime conductor. Note that for some primes, there is more than one elliptic curve with that conductor.
All primes p of the form p = u^2 + 64 for some integer u are in this sequence, as Setzer (1975) proved that for such primes p that there are exactly two elliptic curves E/Q of conductor p. - Robin Visser, Sep 04 2024

Examples

			a(1) = 11, as there are no elliptic curves over Q of conductor less than 11, but there are exactly three elliptic curves over Q of conductor equal to 11, for example E : y^2 + y = x^3 - x^2. - _Robin Visser_, Sep 04 2024
		

Crossrefs

Programs

  • Sage
    # Uses Cremona's database of elliptic curves (works for all p < 500000)
    def is_A217055(p):
        if not Integer(p).is_prime(): return False
        return CremonaDatabase().number_of_curves(p) > 0
    print([p for p in range(1, 1000) if is_A217055(p)])  # Robin Visser, Sep 04 2024

A381352 Conductors admitting a normalized weight-2 eta-quotient newform.

Original entry on oeis.org

11, 14, 15, 20, 24, 27, 32, 36, 48, 64, 80, 144
Offset: 1

Views

Author

Dimitris Cardaris, May 11 2025

Keywords

Comments

By the modularity theorem, each Q-isogeny class of elliptic curves of conductor N corresponds to a unique normalized rational weight-2 newform on Gamma_0(N). This sequence (classified by Martin & Ono) lists exactly those 12 conductors N for which that newform at level N can be written as a single eta-quotient.

Examples

			a(1) = 11 since f(z) = q-2*q^2-q^3+2*q^4+ ... = eta^2(z)*eta^2(11*z) on Gamma_0(11)
		

Crossrefs

Showing 1-4 of 4 results.