A364649 Maximal number of pairwise non-orthogonal 1-dimensional subspaces over F_3^n.
1, 2, 5, 7, 11, 18, 28, 45, 82
Offset: 1
Examples
a(3)=5 by the following vectors: 100,111,112,121,122.
Programs
-
GAP
LoadPackage("grape");; p:=3;; for n in [1..5] do T:=Filtered(GF(p)^n,v->First(v,x->x<>0*Z(p))=Z(p)^0);; #normalized vectors g:=Graph(Group(()),T,Permuted,{x,y}->x<>y and x*y<>0*Z(p),true);; Print(CliqueNumber(g),"\n"); od;
Comments