OFFSET
0,1
COMMENTS
a(n) is the negated discriminants of the finite fields GF(3^(2*n+1)). Discriminants of finite fields defined in the thesis of Zaitsev and the Alekseenko et al paper to study algebraic curves over finite fields.
a(n) -> oo as n -> oo since each number can only occur finitely times: for each d, the equation x^2 + d = 4*7^n can be partitioned into three elliptic curves x^2 + d = 4*Y^3, x^2 + d = 4*7*Y^3, and x^2 + d = 4*7^2*Y^3, each having only finitely many integer solutions.
LINKS
Jianing Song, Table of n, a(n) for n = 0..500
E. Alekseenko, S. Aleshnikov, N. Markin and A. Zaytsev, Optimal Curves of Genus 3 over Finite Fields with Discriminant -19, arXiv:0902.1901 [math.AG], 2009-2011. See Definition 1.1.
A.I. Zaitsev, Optimality properties of curves over finite fields, University of Armsterdam. See Section 3.1.
MATHEMATICA
A396872[n_] := 4*7^(2*n + 1) - Floor[2*7^(n + 1/2)]^2;
Array[A396872, 25, 0] (* Paolo Xausa, Jun 09 2026 *)
PROG
(PARI) a(n, p=7) = my(r); sqrtint(4*p^(2*n+1), &r); r
CROSSREFS
KEYWORD
nonn
AUTHOR
Jianing Song, Jun 08 2026
STATUS
approved
