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”).

A074014
Number of elements of GF(7^n) with trace 0 and subtrace 0.
9
1, 1, 13, 49, 301, 2401, 16807, 117649, 825601, 5764801, 40339201, 282475249
OFFSET
1,3
PROG
(Sage)
def a(n):
if n==1: return 1
ans = 0
for x in GF(7^n):
if x.charpoly().coefficients(sparse=False)[-3:-1]==[0, 0]: ans += 1
return ans # Robin Visser, May 13 2024
KEYWORD
nonn,more
AUTHOR
Frank Ruskey and Nate Kube, Aug 19 2002
EXTENSIONS
a(8)-a(12) from Robin Visser, May 13 2024
STATUS
approved