login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A028363 Total number of doubly-even self-dual binary codes of length 8n. 10
1, 30, 9845550, 171634285407048750, 193419995622362136809061156168750, 14272693289804307141953423466197932293533748208968750 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
F. J. MacWilliams and N. J. A. Sloane, The Theory of Error-Correcting Codes, Elsevier-North Holland, 1978, p. 631.
LINKS
FORMULA
a(n) = 2*Product_{i=1..4n-2} (2^i + 1).
MATHEMATICA
Join[{1}, Table[2*Product[2^i+1, {i, 4n-2}], {n, 6}]] (* Harvey P. Dale, May 08 2013 *)
Table[Product[2^i + 1, {i, 0, n/2 - 2}], {n, 8, 40, 8}] (* Nathan J. Russell, Mar 04 2016 *)
PROG
(Python)
for n in range(8, 50, 8):
product = 1
for i in range(n//2 - 1):
product *= 2**i + 1
print(product, end=", ")
# Nathan J. Russell, Mar 01 2016
CROSSREFS
Sequence in context: A307915 A238636 A140762 * A091511 A324684 A213070
KEYWORD
nonn,easy,nice
AUTHOR
EXTENSIONS
There is an error in Eq. (75) of F. J. MacWilliams and N. J. A. Sloane, the lower subscript should be 1 not 0.
Formula corrected by N. J. A. Sloane, May 07 2013 following a suggestion from Harvey P. Dale
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)