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.

A362201 a(n) = number of isogeny classes of dimension 3 abelian varieties over the finite field of order prime(n).

This page as a plain text file.
%I A362201 #20 Jul 23 2023 22:23:15
%S A362201 215,677,2953,7979,30543,50371,112283,156589,277517,555843,678957,
%T A362201 1153875,1569637,1810805,2364089,3389675,4675707,5167277,6846631,
%U A362201 8147047,8855295,11222313,13014767,16045439,20772343,23449327,24870063,27880975,29473619,32839031,46617799,51162221
%N A362201 a(n) = number of isogeny classes of dimension 3 abelian varieties over the finite field of order prime(n).
%C A362201 Two abelian varieties over a finite field are isogenous if and only if their Hasse-Weil zeta functions coincide.
%C A362201 Thus a(n) is the number of degree 6 integer polynomials with leading coefficient prime(n)^3 and whose (complex) roots all have absolute value 1/sqrt(prime(n)).
%H A362201 Robin Visser, <a href="/A362201/b362201.txt">Table of n, a(n) for n = 1..50</a>
%H A362201 S. A. DiPippo and E. W. Howe, <a href="https://arxiv.org/abs/math/9803097">Real polynomials with all roots on the unit circle and abelian varieties over finite fields</a>, arXiv:math/9803097 [math.NT], 1998-2000.
%H A362201 T. Dupuy, K. Kedlaya, D. Roe, and C. Vincent, <a href="https://arxiv.org/abs/2003.05380">Isogeny Classes of Abelian Varieties over Finite Fields in the LMFDB</a>, arXiv:2003.05380 [math.NT].
%H A362201 S. Haloui, <a href="https://arxiv.org/abs/1003.0374">The characteristic polynomials of abelian varieties of dimensions 3 over finite fields</a>, arXiv:1003.0374 [math.AG], 2020.
%H A362201 LMFDB, <a href="https://www.lmfdb.org/Variety/Abelian/Fq/?search_type=Counts">Abelian variety count results</a>.
%H A362201 W. C. Waterhouse, <a href="https://doi.org/10.24033/asens.1183">Abelian varieties over finite fields</a>, Ann. Sci. École Norm. Sup. (4) 2 (1969), 521-560.
%F A362201 a(n) ~ (1024/45) * prime(n)^3.
%o A362201 (Sage)
%o A362201 from sage.rings.polynomial.weil.weil_polynomials import WeilPolynomials
%o A362201 def a(n):
%o A362201     p = Primes()[n-1]
%o A362201     return len(list(WeilPolynomials(6, p)))
%o A362201 (Sage)
%o A362201 def a(n):
%o A362201     R.<x> = PolynomialRing(CC)
%o A362201     num_solutions = 0
%o A362201     p = Primes()[n-1]
%o A362201     for a1 in range(ceil(-6*sqrt(p)), floor(6*sqrt(p))+1):
%o A362201         for a2 in range(ceil(-15*p), floor(15*p)+1):
%o A362201             for a3 in range(ceil(-20*p*sqrt(p)), floor(20*p*sqrt(p))+1):
%o A362201                 L_poly = 1+a1*x+a2*x^2+a3*x^3+p*a2*x^4+p^2*a1*x^5+p^3*x^6
%o A362201                 for r in L_poly.roots():
%o A362201                     if (abs(abs(r[0]) - 1/sqrt(p)) > 1e-12):
%o A362201                         break
%o A362201                 else:
%o A362201                     num_solutions += 1
%o A362201     return num_solutions
%Y A362201 Cf. A362198, A362570.
%K A362201 nonn
%O A362201 1,1
%A A362201 _Robin Visser_, Apr 10 2023