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!)
A074009 Number of elements of GF(5^n) with trace 1 and subtrace 0. 7
1, 0, 6, 30, 125, 625, 3150, 15750, 78000, 390625, 1955625, 9762500, 48831250, 244156250 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Same as the number of elements of GF(5^n) with trace 2 and subtrace 0. Same as the number of elements of GF(5^n) with trace 3 and subtrace 0. Same as the number of elements of GF(5^n) with trace 4 and subtrace 0.
LINKS
PROG
(Sage)
def a(n):
if n==1: return 1
ans = 0
for x in GF(5^n):
if x.charpoly().coefficients(sparse=False)[-3:-1]==[0, 1]: ans += 1
return ans # Robin Visser, Apr 26 2024
CROSSREFS
Sequence in context: A266945 A369819 A073970 * A248328 A366058 A356835
KEYWORD
nonn,more,changed
AUTHOR
Frank Ruskey and Nate Kube, Aug 19 2002
EXTENSIONS
a(8)-a(14) from Robin Visser, Apr 26 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 May 8 19:26 EDT 2024. Contains 372341 sequences. (Running on oeis4.)