OFFSET
3,1
COMMENTS
a(n) = 2^A070313(n). Krotov on p. 2: "in general, two extended Hamming codes can intersect in 2^(2^m - 2m - 1) elements."
LINKS
Denis Krotov, A partition of the hypercube into cosets of maximally nonparallel Hamming codes, arXiv:1210.0010v1 [cs.IT], 2012-2016.
EXAMPLE
a(5) = 2^(2^5 - 2*5 - 1) = 2^21 = 2097152.
MATHEMATICA
Table[2^(2^n - 2n - 1), {n, 3, 15}] (* Alonso del Arte, Jan 13 2013 *)
PROG
(PARI) 1<<(2^n-2*n-1) \\ Charles R Greathouse IV, Jan 24 2013
(Maxima) makelist(floor(2^(2^n-2*n-1)), n, 3, 8); /* Martin Ettl, Jan 25 2013 */
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Jonathan Vos Post, Jan 13 2013
STATUS
approved