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.

Showing 1-5 of 5 results.

A140441 Erroneous version of A071881.

Original entry on oeis.org

1, 1, 1, 1, 3, 221
Offset: 0

Views

Author

Keywords

References

  • S. S. Ryshkov and E. P. Baranovskii, "C-types of n-dimensional lattices and 5-dimensional primitive parellohedra (with an application to the theory of coverings)" Proc. Steklov Inst. Math., 137 (1975) Trudy Mat. Inst. Steklov., 137 (1975)

A071880 Number of combinatorial types of n-dimensional parallelohedra.

Original entry on oeis.org

1, 1, 2, 5, 52, 103769
Offset: 0

Views

Author

N. J. A. Sloane, Jun 10 2002

Keywords

Comments

a(n) is the number of topologically distinct shapes the Voronoi cell (or Vocell) of an n-dimensional lattice can have.
a(n) is the number of combinatorially distinct parallelotopes that tile R^n. Dirichlet proved a(2) = 2, Fedorov showed a(3) = 5, while a(4) = 52 is due to Delone as corrected by Stogrin, and a(5) = 103769 to Engel. - Jonathan Sondow, May 26 2017
The papers by Dutuor Sikiric, Garber et al say that actually a(5) = 110244. The claim that every parallelotope is a Voronoi cell of some lattice in R^n up to an affine transformation is a conjecture open for n > 5. - Andrey Zabolotskiy, Feb 20 2021

Examples

			In 1 dimension: the Vocell is an interval (1 possible shape)
In 2 dimensions: a hexagon or rectangle (2 possible shapes)
In 3 dimensions: truncated octahedron, hexarhombic dodecahedron, rhombic dodecahedron, hexagonal prism, cuboid (5 possible shapes)
		

References

  • J. H. Conway, The Sensual Quadratic Form.
  • E. S. Fedorov, An Introduction to the Theory of Figures. Notices of the Imperial Petersburg Mineralogical Society, 2nd series, vol. 21, 1-279, 1885. (English translation in Symmetry of crystals, ACA Monograph no. 7, 50-131, 1971.)

Crossrefs

Extensions

Corrected by J. H. Conway, Dec 25 2003

A071882 Number of contraction types of n-dimensional parallelohedra.

Original entry on oeis.org

1, 1, 2, 5, 52, 179372
Offset: 0

Views

Author

N. J. A. Sloane, Jun 10 2002

Keywords

Comments

Or, number of inequivalent Delaunay [Delone] decompositions of R^n.
Sikiric et al. say that actually a(5) = 181394. - Andrey Zabolotskiy, Mar 02 2019

Crossrefs

A321015 Number of isohedral Voronoi parallelotopes in R^n.

Original entry on oeis.org

1, 2, 2, 4, 3, 6, 4, 7, 4, 6, 3, 10, 3, 7, 6, 9, 3, 10, 3, 10, 7, 6, 3, 15, 5, 6, 6, 11, 3, 14, 3, 11, 6, 6, 8, 16, 3, 6, 6, 15, 3, 15, 3, 10, 10, 6, 3, 19, 6, 10, 6, 10, 3, 14, 7, 16, 6, 6, 3, 22, 3, 6, 11, 13, 7, 14, 3, 10, 6, 15, 3, 23, 3, 6, 10, 10, 8, 14, 3, 19, 8, 6, 3, 23, 7
Offset: 1

Views

Author

N. J. A. Sloane, Nov 04 2018

Keywords

Examples

			Of the five different Voronoi cells of 3-dimensional lattices, only two are isohedral, so a(3) = 2: the cube and the rhombic dodecahedron, the Voronoi cells of the primitive cubic and the face-centered cubic lattices.
		

Crossrefs

Programs

  • Maple
    d2:=proc(n) local c; if n <= 3 then return(0); fi;
    c:=NumberTheory[tau](n)-1;
    if (n mod 2)=0 then c:=c-1; fi;
    if (n mod 3)=0 then c:=c-1; fi; c; end; # A321014
    d3:=proc(n) local c;  c:=0;
    if (n mod 6)=0 then c:=c+1; fi;
    if (n mod 7)=0 then c:=c+1; fi;
    if (n mod 8)=0 then c:=c+1; fi; c; end; # A321013
    [seq(NumberTheory[tau](n)+d2(n)+d3(n),n=1..120)];
  • PARI
    a(n) = 2*numdiv(n) + sum(k = 6, 8, !(n % k)) + n%2 + (n%3>0) - 3; \\ Amiram Eldar, Feb 02 2025

Formula

a(n) = d(n) + A321013(n) + A321014(n), where d(n) = A000005(n) is the number of divisors of n.
Sum_{k=1..n} a(k) ~ n * (2*log(n) + 4*gamma - 571/168), where gamma is Euler's constant (A001620). - Amiram Eldar, Feb 02 2025

A089301 Number of C-types (or contiguity types) of n-dimensional lattices.

Original entry on oeis.org

1, 1, 1, 1, 3, 76
Offset: 0

Views

Author

N. J. A. Sloane, following a suggestion of J. H. Conway, Dec 26 2003

Keywords

References

  • Ryskov, S. S., C-types of n-dimensional parallelohedra, Dokl. Akad. Nauk SSSR 212 (1973), 46-49.
  • Ryskov, S. S. and Baranovskii, E. P., C-types of n-dimensional lattices and 5-dimensional primitive parallelohedra (with application to the theory of coverings), Trudy Mat. Inst. Steklov 137 (1976). English translation: Proc. Steklov Inst. Math. 1978, no. 4, 140 pp.

Crossrefs

Showing 1-5 of 5 results.