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.

A008655 Theta series of direct sum of 4 copies of hexagonal lattice.

Original entry on oeis.org

1, 24, 216, 888, 1752, 3024, 7992, 8256, 14040, 24216, 27216, 31968, 64824, 52752, 74304, 111888, 112344, 117936, 217944, 164640, 220752, 305472, 287712, 292032, 519480, 378024, 474768, 654072
Offset: 0

Views

Author

Keywords

Comments

The hexagonal lattice is the familiar 2-dimensional lattice in which each point has 6 neighbors. This is sometimes called the triangular lattice.
Convolution of A008654 and A004016. Convolution square of A008653. - R. J. Mathar, Feb 22 2021

References

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

Programs

  • Maple
    A008655 := proc(n)
            add( A004016(i)*x^i,i=0..n) ;
            coeftayl(%^4,x=0,n) ;
    end proc: # R. J. Mathar, Feb 22 2021
  • Mathematica
    terms = 28; s = (EllipticTheta[3, 0, q]^3 + EllipticTheta[3, Pi/3, q]^3 + EllipticTheta[3, 2 Pi/3, q]^3)^4/(81*EllipticTheta[3, 0, q^3]^4) + O[q]^(2 terms); CoefficientList[s, q^2][[1 ;; terms]] (* Jean-François Alcover, Jul 07 2017, from LatticeData(A2) *)

Formula

Expansion of (theta_3(z)*theta_3(3z) + theta_2(z)*theta_2(3z))^4.