login
A074008
Number of elements of GF(5^n) with trace 0 and subtrace 2.
7
0, 2, 6, 20, 150, 600, 3150, 15750, 78000, 391250, 1952500, 9768750, 48831250, 244125000
OFFSET
1,2
COMMENTS
Same as the number of elements of GF(5^n) with trace 0 and subtrace 3.
PROG
(Sage)
def a(n):
ans = 0
for x in GF(5^n):
if x.charpoly().coefficients(sparse=False)[-3:-1]==[2, 0]: ans += 1
return ans # Robin Visser, Apr 26 2024
KEYWORD
nonn,more
AUTHOR
Frank Ruskey and Nate Kube, Aug 19 2002
EXTENSIONS
a(8)-a(14) from Robin Visser, Apr 26 2024
STATUS
approved