OFFSET
1,13
COMMENTS
Also the dimension of the space of cusp forms of weight two on Gamma1(n). [Steven Finch, Apr 03 2009]
REFERENCES
F. Hirzebruch et al., Manifolds and Modular Forms, Vieweg, 2nd ed. 1994, p. 161.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
S. R. Finch, Modular forms on SL_2(Z), December 28, 2005. [Cached copy, with permission of the author]
Chang Heon Kim, Ja Kyung Koo, On the genus of some modular curves of level N, Bull Austral. Math. Soc. 54 (1996) 291-297.
A. V. Sutherland, Torsion subgroups of elliptic curves over number fields, 2012. - From N. J. A. Sloane, Feb 03 2013
MAPLE
MATHEMATICA
a[n_ /; n<5] = 0; a[n_] := 1+Sum[d^2*MoebiusMu[n/d]/24 - EulerPhi[d]*EulerPhi[n/d]/4, {d, Divisors[n]}]; Table[a[n], {n, 1, 100}] (* Jean-François Alcover, Jan 13 2014 *)
PROG
(PARI)
A029935(n) = {
my(f = factor(n), fsz = matsize(f)[1],
g = prod(k=1, fsz, f[k, 1]),
h = prod(k=1, fsz, sqr(f[k, 1]-1)*f[k, 2] + sqr(f[k, 1])-1));
return(h*n\sqr(g));
};
a(n) = {
if (n < 5, return(0));
my(f = factor(n), fsz = matsize(f)[1],
g = prod(k=1, fsz, f[k, 1]),
h = prod(k=1, fsz, sqr(f[k, 1]) - 1));
return(1 + sqr(n\g)*h/24 - A029935(n)/4);
};
vector(63, n, a(n)) \\ Gheorghe Coserea, Oct 23 2016
CROSSREFS
KEYWORD
nonn,nice,easy
AUTHOR
STATUS
approved