Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I M4774 #27 Nov 09 2024 09:58:58
%S 11,14,15,17,19,20,21,24,26,27,30,32,33,34,35,36,37,38,39,40,42,43,44,
%T 45,46,48,49,50,51,52,53,54,55,56,57,58,61,62,63,64,65,66,67,69,70,72,
%U 73,75,76,77,78
%N Conductors of elliptic curves.
%C 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
%D B. J. Birch and W. Kuyk, eds., Modular Functions of One Variable IV (Antwerp, 1972), Lect. Notes Math. 476 (1975), see pp. 82ff.
%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
%H J. E. Cremona, <a href="/A005788/b005788.txt">Table of n, a(n) for n = 1..10000</a>
%H J. E. Cremona, <a href="https://johncremona.github.io/ecdata/">Elliptic Curve Data</a>.
%H Sean Howe and Kirti Joshi, <a href="https://arxiv.org/abs/1201.4566">Asymptotics of conductors of elliptic curves over Q</a>, arXiv:1201.4566 [math.NT], 2012.
%H LMFDB, <a href="https://www.lmfdb.org/EllipticCurve/Q/">Elliptic curves over Q</a>.
%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/EllipticCurve.html">Elliptic Curve</a>.
%e 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
%o (Sage) # Uses Cremona's database of elliptic curves (works for all k < 500000)
%o def is_A005788(k):
%o return CremonaDatabase().number_of_curves(k) > 0
%o print([k for k in range(1, 1000) if is_A005788(k)]) # _Robin Visser_, Nov 04 2024
%Y Cf. A060564, A110563, A110620, A217055.
%K nonn
%O 1,1
%A _N. J. A. Sloane_.