login
A074023
Number of elements of GF(7^n) with trace 1 and subtrace 6.
9
0, 2, 6, 56, 301, 2450, 16807, 117992, 823200, 5762400, 40356008, 282475249
OFFSET
1,2
COMMENTS
Same as the number of elements of GF(7^n) with trace 2 and subtrace 3. Same as the number of elements of GF(7^n) with trace 3 and subtrace 5. Same as the number of elements of GF(7^n) with trace 4 and subtrace 5. Same as the number of elements of GF(7^n) with trace 5 and subtrace 3. Same as the number of elements of GF(7^n) with trace 6 and subtrace 6.
EXAMPLE
a(3;1,6)=6. Let GF(7^3) be defined by the field extension GF(7)[x]/( 3+b^2+b^3 ). The six elements of GF(7^3) with trace 1 and subtrace 6 are { 1+2b, 2+5b, 1+3b+b^2, 4+5b+b^2, 6+2b+6b^2, 2+4b+6b^2 }.
PROG
(Sage)
def a(n):
ans = 0
for x in GF(7^n):
if x.charpoly().coefficients(sparse=False)[-3:-1]==[6, 1]: ans += 1
return ans # Robin Visser, May 13 2024
KEYWORD
easy,nonn,more
AUTHOR
Frank Ruskey and Nate Kube, Aug 19 2002
EXTENSIONS
a(8)-a(12) from Robin Visser, May 13 2024
STATUS
approved