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

A074000
Number of elements of GF(3^n) with trace 0 and subtrace 0.
9
1, 1, 3, 9, 21, 99, 225, 729, 2187, 6561, 19845, 58563, 177633, 531441, 1594323, 4782969, 14344533, 43059843, 129127041, 387420489, 1162261467
OFFSET
1,3
FORMULA
Appears to satisfy a linear recurrence of order 5 with signature (0, 3, 9, 18, 27). This also applies to sequences A074001-A074005. - Andrey Zabolotskiy, Dec 30 2024
PROG
(Sage)
def a(n):
if n==1: return 1
ans = 0
for x in GF(3^n):
if x.charpoly().coefficients(sparse=False)[-3:-1]==[0, 0]: ans += 1
return ans # Robin Visser, Dec 28 2024
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Frank Ruskey and Nate Kube, Aug 19 2002
EXTENSIONS
a(18) corrected and a(21) added by Robin Visser, Dec 28 2024
STATUS
approved