cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A054911 Number of n-dimensional odd unimodular lattices (or quadratic forms).

Original entry on oeis.org

0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 4, 5, 6, 9, 13, 16, 28, 40, 68, 117, 273, 665, 2566, 17059, 374062
Offset: 0

Views

Author

N. J. A. Sloane, May 23 2000

Keywords

Comments

a(n) is also the class number of Z^n (the standard lattice with the identity as the basis), as every n-dimensional odd unimodular lattice lies in the same genus as Z^n. - Robin Visser, Jan 24 2025
King gives the lower bounds a(29) >= 37938009 and a(30) >= 20169641025. - Robin Visser, Feb 08 2025

References

  • J. H. Conway and N. J. A. Sloane, "Sphere Packings, Lattices and Groups", Springer-Verlag, p. 49.

Crossrefs

Programs

  • Magma
    function a(n)
        if n lt 3 then return Min(1,n); end if;
        L := NumberFieldLattice(QNF(), n);
        return #GenusRepresentatives(L);
    end function;  // Robin Visser, Jan 24 2025

Formula

If 8 divides n, then a(n) = A005134(n) - A054909(n/8), otherwise a(n) = A005134(n). - Robin Visser, Jan 24 2025
a(n) >= 2*A241121(n)/A241122(n). - Robin Visser, Feb 08 2025