OFFSET
1,3
REFERENCES
R. Lidl and H. Niederreiter, Finite Fields, 2nd ed., Cambridge Univ. Press, 1997. Chapter 2 discusses primitivity in sections 1-2 and trace in section 3.
LINKS
W.-S. Chou and S.D. Cohen, Primitive elements with zero traces, Finite Fields and Their Appl. 7 (2001), 125-141; DOI:10.1006/ffta.2000.0284.
FORMULA
a(n) = n * A152049(n). [Joerg Arndt, Jul 03 2011]
PROG
(GAP)
p := 2;
for n in [1..17] do
F := GF(p^n);
num := 0;
for f in F do
if (f = Zero(F)) then continue; fi;
if (Trace(f) <> Zero(F)) then continue; fi;
if (Order(f) <> Size(F) - 1) then continue; fi;
num := num + 1;
od;
Print (num, ", ");
od;
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
Pasha Zusmanovich, Jun 25 2011
EXTENSIONS
Terms 69948, ..., 1073809184 from Joerg Arndt, Jun 26 2011
Terms >1073809184 from Joerg Arndt, Jul 03 2011
STATUS
approved