SmallGroup(64,32)is not realizable in characteristic 2.
In [1]:
# By Schwartz-Werner, this group is not even realizable# because there is an element g of order at least 8# such that C_G(g) = <g>.G=gap.SmallGroup(64,32)flag=FalseforginG.Elements():ifg.Order()>=8andgap.Centralizer(G,g)==G.Subgroup([g]):flag=Truebreakifflag:print("There exists g in G with |g| >= 8 and such that C_G(g) = <g>.")else:print("Failed")
Out[1]:
There exists g in G with |g| >= 8 and such that C_G(g) = <g>.