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.

A368081 Number of Qbar-isomorphism classes of elliptic curves E/Q with good reduction away from 2 and prime(n).

Original entry on oeis.org

5, 83, 32, 33, 26, 39, 29, 39, 29, 34, 32, 27, 19, 18, 14, 34, 35, 19, 11, 33, 14, 35, 19, 21, 16, 24, 10, 27, 17, 15, 32, 17, 16, 18, 11, 13, 14, 26, 15, 20, 13, 16, 7, 8, 11, 11, 11, 32, 11, 33, 17, 12, 18
Offset: 1

Views

Author

Robin Visser, Dec 10 2023

Keywords

Comments

Two elliptic curves are isomorphic over Qbar (the algebraic numbers) if and only if they share the same j-invariant, thus a(n) is also the number of distinct j-invariants of elliptic curves E/Q with good reduction outside 2 and prime(n).

Examples

			For n = 1, there are 24 elliptic curves over Q with good reduction outside 2, classified by Ogg (1966). These are divided into a(1) = 5 Qbar-isomorphism classes, where the 5 corresponding j-invariants are given by 128, 1728, 8000, 10976, and 287496 (sequence A332545).
		

References

  • N. M. Stephens, The Birch Swinnerton-Dyer Conjecture for Selmer curves of positive rank, Ph.D. Thesis (1965), The University of Manchester.

Crossrefs

Programs

  • Sage
    # This is very slow for n > 4
    def a(n):
        S = list(set([2, Primes()[n-1]]))
        EC = EllipticCurves_with_good_reduction_outside_S(S)
        return len(set(E.j_invariant() for E in EC))