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

 


A169878
Maximum number of rational points on a smooth absolutely irreducible projective curve of genus 2 over the field F_3^n.
1
8, 20, 48, 118, 306, 838, 2372, 6886, 20244, 60022, 178830, 534358, 1599374, 4791718, 14364057, 43072966, 129185618, 387499222, 1162397834, 3487020598, 10460762306, 31381768198, 94144406138, 282431662246, 847292291373, 2541872205622, 7625608530780, 22876811586838, 68630410502264
OFFSET
1,1
REFERENCES
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.
LINKS
Jean-Pierre Serre, Sur le nombre des points rationnels d'une courbe algébrique sur un corps fini, C. R. Acad. Sci. Paris Ser. I Math. 296 (1983), no. 9, 397-402.
Gerard van der Geer et al., Tables of curves with many points
Gerard van der Geer and Marcel van der Vlugt, Tables of curves with many points, Math. Comp. 69 (2000) 797-810.
PROG
(Sage)
def a(n):
if n==2: return 20
elif (n%2 == 0): return 3^n + 1 + 4*3^(n/2)
elif ((floor(2*3^(n/2))%3 == 0) or (3^n-1).is_square()
or (4*3^n-3).is_square() or (4*3^n-7).is_square()):
if (frac(2*3^(n/2)) > ((sqrt(5)-1)/2)): return 3^n + 2*floor(2*3^(n/2))
else: return 3^n + 2*floor(2*3^(n/2)) - 1
else: return 3^n + 1 + 2*floor(2*3^(n/2)) # Robin Visser, Oct 01 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jul 05 2010
EXTENSIONS
More terms from Robin Visser, Oct 01 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 21 07:45 EDT 2024. Contains 376083 sequences. (Running on oeis4.)