Statically allocate arrays such as SEQ, SUBSEQ, C32, D64, BJ64,
instead of using malloc.

In bsgs64 we compute b = 5^Q (mod p) for each p. This could be made more
efficient by precomputing y = 5^x where x is the largest divisor of Q such
that 5^x < p_min, then computing b = y^(Q/x) (mod p) for each p.
