login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A192511
Number of conjugacy classes of primitive elements in GF(13^n) which have trace 0.
6
0, 0, 18, 112, 1904, 17184, 229848, 1686008, 29713758
OFFSET
1,3
COMMENTS
Also number of primitive polynomials of degree n over GF(13) whose second-highest coefficient is 0.
FORMULA
a(n) = A192216(n) / n.
PROG
(GAP)
p := 13;
a := function(n)
local q, k, cnt, x;
q:=p^n; k:=GF(p, n); cnt:=0;
for x in k do
if Trace(k, GF(p), x)=0*Z(p) and Order(x)=q-1 then
cnt := cnt+1;
fi;
od;
return cnt/n;
end;
for n in [1..16] do Print (a(n), ", "); od;
(Sage) # See A192507 (change first line p=3 to p=13)
CROSSREFS
Cf. A152049 (GF(2^n)), A192507 (GF(3^n)), A192508 (GF(5^n)), A192509 (GF(7^n)), A192510 (GF(11^n)).
Sequence in context: A213562 A041622 A160765 * A324623 A244866 A125328
KEYWORD
nonn,hard,more
AUTHOR
Joerg Arndt, Jul 03 2011
EXTENSIONS
a(7)-a(9) from Robin Visser, Jun 01 2024
STATUS
approved