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!)
A169872 Maximum number of rational points on a smooth absolutely irreducible projective curve of genus 1 over the field F_2^n. 1

%I #10 Aug 17 2023 20:46:45

%S 5,9,14,25,44,81,150,289,558,1089,2138,4225,8374,16641,33130,66049,

%T 131796,263169,525736,1050625,2100048,4198401,8394400,16785409,

%U 33566018,67125249,134240898,268468225,536917252,1073807361,2147576330,4295098369,8590119956,17180131329,34360109096

%N Maximum number of rational points on a smooth absolutely irreducible projective curve of genus 1 over the field F_2^n.

%H Robin Visser, <a href="/A169872/b169872.txt">Table of n, a(n) for n = 1..3000</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 Gerard van der Geer et al., <a href="http://www.manypoints.org">Tables of curves with many points</a>

%H Gerard van der Geer and Marcel van der Vlugt, <a href="https://doi.org/10.1090/S0025-5718-99-01143-6">Tables of curves with many points</a>, Math. Comp. 69 (2000) 797-810.

%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.

%F a(n) = 2^n + 1 + floor(2^(n/2 + 1)) if floor(2^(n/2 + 1)) is odd, n is even, or n = 1. Otherwise a(n) = 2^n + floor(2^(n/2 + 1)) [Deuring-Waterhouse]. - _Robin Visser_, Aug 17 2023

%o (Sage)

%o def a(n):

%o if (n==1) or (n%2 == 0) or (floor(2^(n/2+1))%2 != 0):

%o return 2^n + 1 + floor(2^(n/2+1))

%o else:

%o return 2^n + floor(2^(n/2+1)) # _Robin Visser_, Aug 17 2023

%Y Cf. A005523, A169869-A169883.

%K nonn

%O 1,1

%A _N. J. A. Sloane_, Jul 05 2010

%E More terms from _Robin Visser_, Aug 17 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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)