A290705 Theta series of triamond.
1, 3, 0, 6, 0, 6, 8, 12, 6, 9, 0, 6, 0, 18, 0, 12, 12, 12, 0, 18, 0, 12, 24, 12, 8, 21, 0, 24, 0, 6, 0, 24, 6, 24, 0, 12, 0, 30, 24, 12, 24, 12, 0, 30, 0, 30, 0, 24, 24, 27, 0, 12, 0, 18, 32, 36, 0, 24, 0, 18, 0, 30, 0, 36, 12, 12, 0, 42, 0, 24, 48, 12, 30
Offset: 0
Keywords
Links
- Toshikazu Sunada, Crystals that nature might miss creating, Notices Amer. Math. Soc. 55 (No. 2, 2008), 208-215.
- Toshikazu Sunada, Correction to "Crystals That Nature Might Miss Creating", Notices Amer. Math. Soc., 55 (No. 3, 2008), page 343. [Annotated scanned copy]
- Wikipedia, Laves graph
Programs
-
Mathematica
(* count lattice sites straightforwardly *) cell = Join @@ ({#, # + {1, 1, 1}/2} & /@ {{0, 0, 0}, {1/4, 0, 1/4}, {-1/4, -1/4, 0}, {0, 1/4, -1/4}}); (* lattice sites in a conventional bcc unit cell *) n = 10; s = O[q]^(n^2 + 1) + Sum[q^(8 Norm[a + {i, j, k}]^2), {i, -n-1, n+1}, {j, -n-1, n+1}, {k, -n-1, n+1}, {a, cell}]; CoefficientList[Normal[s], q] & (* or use the generation function *) a[n_] := SeriesCoefficient[ EllipticTheta[3, 0, x^8]^3 + EllipticTheta[ 2, 0, x^8]^3 + 3/4 EllipticTheta[3, 0, x^2] EllipticTheta[2, 0, x^2]^2, {x, 0, n}];
Comments