A300651 Number of inequivalent sublattices of index n in hexagonal lattice, where two sublattices are considered equivalent if they are related by any rotation or reflection.
1, 1, 2, 3, 2, 3, 3, 5, 4, 4, 3, 8, 4, 5, 6, 9, 4, 8, 5, 10, 8, 7, 5, 15, 7, 8, 9, 13, 6, 14, 7, 15, 10, 10, 10, 20, 8, 11, 12, 20, 8, 17, 9, 17, 16, 13, 9, 28, 11, 17, 14, 20, 10, 22, 14, 25, 16, 16, 11, 34, 12, 17, 20, 27, 16, 26, 13, 24, 18, 24, 13, 40
Offset: 1
Keywords
Links
- Andrey Zabolotskiy, Table of n, a(n) for n = 1..1000
- Daejun Kim, Seok Hyeong Lee, and Seungjai Lee, Zeta functions enumerating subforms of quadratic forms, arXiv:2409.05625 [math.NT], 2024. See section 6.1 for the Dirichlet g.f. zeta^GL_{x^2+xy+y^2}(s).
- Andrey Zabolotskiy, Sublattices of the hexagonal lattice (illustrations for n = 1..7, 14)
- Index entries for sequences related to sublattices
- Index entries for sequences related to A2 = hexagonal = triangular lattice
Programs
-
SageMath
# See A159842 and A054384 for the definitions of functions used here def a_GL(n): return (a_SL(n) + dc(fin(1, -1, 0, 2), u, u, g2)(n)) / 2 print([a_GL(n) for n in range(1, 100)]) # Andrey Zabolotskiy, Sep 22 2024
Comments