login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A005523 a(n) = maximal number of rational points on an elliptic curve over GF(q), where q = A246655(n) is the n-th prime power > 1.
(Formerly M3757)
9

%I M3757 #50 Aug 03 2023 02:04:21

%S 5,7,9,10,13,14,16,18,21,25,26,28,33,36,38,40,43,44,50,54,57,61,64,68,

%T 75,77,81,84,88,91,97,100,102,108,117,122,124,128,130,135,144,148,150,

%U 150,154,161,163,174,176,183,189,193,196,200,206,208,219,221,226,228,241,253,258,260

%N a(n) = maximal number of rational points on an elliptic curve over GF(q), where q = A246655(n) is the n-th prime power > 1.

%C The successive values of q are 2, 3, 4, 5, 7, 8, 9, 11, 13, 16, 17, 19, 23, ... (see A246655).

%D J. W. P. Hirschfeld, Linear codes and algebraic curves, pp. 35-53 of F. C. Holroyd and R. J. Wilson, editors, Geometrical Combinatorics. Pitman, Boston, 1984. See N_q(1) on page 51.

%D J.-P. Serre, Oeuvres, vol. 3, pp. 658-663 and 664-669.

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H Robin Visser, <a href="/A005523/b005523.txt">Table of n, a(n) for n = 1..10000</a>

%H Max Deuring, <a href="https://doi.org/10.1007/BF02940746">Die Typen der Multiplikatorenringe elliptischer Funktionenkörper</a>, Abh. Math. Sem. Hansischen Univ. 14 (1941), 197-272.

%H W. C. Waterhouse, <a href="https://doi.org/10.24033/asens.1183">Abelian varieties over finite fields</a>, Ann Sci. E.N.S., (4) 2 (1969), 521-560.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/RationalPoint.html">Rational Point.</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Hasse%27s_theorem_on_elliptic_curves">Hasse's theorem on elliptic curves</a>

%F a(n) <= q + 1 + 2*sqrt(q) where q = A246655(n) [Hasse theorem]. - _Sean A. Irvine_, Jun 26 2020

%F a(n) = q + 1 + floor(2*sqrt(q)) if p does not divide floor(2*sqrt(q)), q is a square, or q = p. Otherwise a(n) = q + floor(2*sqrt(q)) where q = A246655(n) [Waterhouse 1969]. - _Robin Visser_, Aug 02 2023

%e a(1) = 5 because 5 is the maximal number of rational points on an elliptic curve over GF(2),

%e a(2) = 7 because 7 is the maximal number of rational points on an elliptic curve over GF(3),

%e a(3) = 9 because 9 is the maximal number of rational points on an elliptic curve over GF(4).

%o (Sage)

%o for q in range(1, 1000):

%o if Integer(q).is_prime_power():

%o p = Integer(q).prime_factors()[0]

%o if (floor(2*sqrt(q))%p != 0) or (Integer(q).is_square()) or (q==p):

%o print(q + 1 + floor(2*sqrt(q)))

%o else:

%o print(q + floor(2*sqrt(q))) # _Robin Visser_, Aug 02 2023

%Y Cf. A000961, A246655.

%K nonn,easy

%O 1,1

%A _N. J. A. Sloane_

%E Reworded definition and changed offset so as to clarify the indexing. - _N. J. A. Sloane_, Jan 08 2017

%E More terms from _Robin Visser_, Aug 02 2023

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 19:06 EDT 2024. Contains 371962 sequences. (Running on oeis4.)