login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A074019 Number of elements of GF(7^n) with trace 1 and subtrace 2. 9
0, 1, 6, 56, 350, 2352, 16807, 117306, 825601, 5762400, 40356008, 282458442 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Same as the number of elements of GF(7^n) with trace 2 and subtrace 1. Same as the number of elements of GF(7^n) with trace 3 and subtrace 4. Same as the number of elements of GF(7^n) with trace 4 and subtrace 4. Same as the number of elements of GF(7^n) with trace 5 and subtrace 1. Same as the number of elements of GF(7^n) with trace 6 and subtrace 2.
LINKS
EXAMPLE
a(2;3,4)=1. Let GF(7^2) be defined by the field extension GF(7)[x]/( 3+5b+b^2 ). The one element of GF(7^2) with trace 3 and subtrace 4 is { 5 }.
PROG
(Sage)
def a(n):
ans = 0
for x in GF(7^n):
if x.charpoly().coefficients(sparse=False)[-3:-1]==[2, 1]: ans += 1
return ans # Robin Visser, May 13 2024
CROSSREFS
Sequence in context: A364471 A097126 A210325 * A074018 A074016 A183513
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 9 21:21 EDT 2024. Contains 375044 sequences. (Running on oeis4.)