OFFSET
0,1
REFERENCES
J. H. Conway and N. J. A. Sloane, "Sphere Packings, Lattices and Groups", Springer-Verlag, p. 129.
LINKS
A. R. Calderbank, E. M. Rains, P. W. Shor and N. J. A. Sloane, Quantum error correction via codes over GF(4), arXiv:quant-ph/9608006, 1996-1997; IEEE Trans. Inform. Theory, 44 (1998), 1369-1387.
G. E. Wall, On the Clifford collineation, transform and similarity groups. IV. An application to quadratic forms, Nagoya Math. J., 21 (1962), pp. 199-222.
MAPLE
2^(n^2+n+1) * (2^n - 1) * product('2^(2*i)-1', 'i'=1..n-1);
PROG
(Python)
from math import prod
def A014115(n): return 2 if n == 0 else ((1<<n)-1)*prod((1<<i)-1 for i in range(2, 2*n-1, 2)) << n*(n+1)+1 # Chai Wah Wu, Jun 20 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved