A035282 Expansion of zeta function of icosian ring (nonzero terms).
1, 5, 6, 10, 24, 21, 40, 30, 31, 60, 64, 50, 84, 120, 60, 50, 144, 120, 124, 85, 144, 200, 160, 126, 91, 180, 240, 240, 155, 204, 220, 300, 410, 320, 156, 264, 280, 210, 360, 300, 304, 384, 420, 170, 400, 504, 360, 300, 364, 384, 250, 400, 504, 960, 424, 720, 310
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- M. Baake and R. V. Moody, Similarity submodules and root systems in four dimensions, Canad. J. Math. (1999), 51 1258-1276.
- M. Baake and R. V. Moody, Similarity submodules and root systems in four dimensions, arXiv:math/9904028 [math.MG], 1999.
Programs
-
Mathematica
f[p_, e_] := Which[p == 5, (5^(e + 1) - 1)/4, (m = Mod[p, 5]) == 2 || m == 3, If[EvenQ[e], (p^(e + 2) - 1)/(p^2 - 1), 0], m == 1 || m == 4, Sum[(k + 1)*(e - k + 1)*p^k, {k, 0, e}]]; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; Select[Array[s, 200], # > 0 &] (* Amiram Eldar, May 13 2022 *)
Comments