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.

A060564 Number of elliptic curves (up to isogeny) of conductor n.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 2, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 2, 2, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 2, 1, 2, 3, 2, 0, 0, 1, 1, 1, 1, 1, 3, 1, 0, 1, 1, 0, 1, 1, 0, 3, 1, 3, 1, 1, 2, 0, 1, 1, 2, 1, 0, 0, 1, 2, 3, 2, 2, 0, 1, 0, 2, 0, 1, 4
Offset: 1

Views

Author

N. J. A. Sloane, Apr 12 2001

Keywords

Comments

By the modularity of elliptic curves over Q (proved by Breuil-Conrad-Diamond-Taylor), a(n) is equivalently the number of integral normalized weight 2 newforms for Gamma_0(n). - Robin Visser, Nov 04 2024

Examples

			a(11) = 1, as there is exactly one isogeny class of elliptic curves over Q of conductor 11, represented by E : y^2 + y = x^3 - x^2. - _Robin Visser_, Nov 04 2024
		

Crossrefs

Programs

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