1 | initial version |
You can always do find these elements
sage: a = K.multiplicative_generator()
sage: basis = [a**i for i in range(dim)]
where K is your finite field and dim is the dimension of your vector space (or the codimension of the ground field sitting inside the big one).
Vincent