A288458 Chebyshev coefficients of density of states of cubic lattice.
1, -24, 288, -2688, -32256, 2820096, -95035392, 1972076544, -9841803264, -1288894414848, 70351960670208, -2164060518875136, 36664809432809472, 365875642245316608, -55960058736918134784, 2436570173137823465472, -64272155689216515244032, 664295705652718630600704, 35692460661517822602510336
Offset: 0
Keywords
Links
- Yen Lee Loh, A general method for calculating lattice Green functions on the branch cut, arXiv:1706.03083 [math-ph], 2017.
Crossrefs
Programs
-
Mathematica
Whon[n_] := If[OddQ[n], 0, Sum[Binomial[n/2,j]^2 Binomial[2j,j], {j, 0, n/2}]]; Wcub[n_] := Binomial[n, n/2] Whon[n]; ank[n_, k_] := SeriesCoefficient[ChebyshevT[n, x], {x, 0, k}]; zng[n_] := Sum[ank[n, k]*6^(n-k)*Wcub[k], {k, 0, n}]; Table[zng[n], {n,0,50}]
Comments