login
A160960
a(n) = Sum_{d|n} Moebius(n/d)*d^(b-1)/phi(n) for b = 12.
4
1, 2047, 88573, 2096128, 12207031, 181308931, 329554457, 2146435072, 5230147077, 24987792457, 28531167061, 185660345344, 149346699503, 674597973479, 1081213356763, 2197949513728, 2141993519227, 10706111066619
OFFSET
1,2
COMMENTS
a(n) is the number of lattices L in Z^11 such that the quotient group Z^11 / L is C_n. - Álvar Ibeas, Nov 26 2015
LINKS
Jin Ho Kwak and Jaeun Lee, Enumeration of graph coverings, surface branched coverings and related group theory, in Combinatorial and Computational Mathematics (Pohang, 2000), ed. S. Hong et al., World Scientific, Singapore 2001, pp. 97-161. See p. 134.
FORMULA
a(n) = J_11(n)/J_1(n) where J_11 and J_1(n) = A000010(n) are Jordan functions. - R. J. Mathar, Jul 12 2011
From Álvar Ibeas, Nov 26 2015: (Start)
Multiplicative with a(p^e) = p^(10e-10) * (p^11-1) / (p-1).
For squarefree n, a(n) = A000203(n^10). (End)
From Amiram Eldar, Nov 08 2022: (Start)
Sum_{k=1..n} a(k) ~ c * n^11, where c = (1/11) * Product_{p prime} (1 + (p^10-1)/((p-1)*p^11)) = 0.1766326404... .
Sum_{k>=1} 1/a(k) = zeta(10)*zeta(11) * Product_{p prime} (1 - 2/p^11 + 1/p^21) = 1.0005003781952... . (End)
MATHEMATICA
b = 12; Table[Sum[MoebiusMu[n/d] d^(b - 1)/EulerPhi@ n, {d, Divisors@ n}], {n, 18}] (* Michael De Vlieger, Nov 27 2015 *)
f[p_, e_] := p^(10*e - 10) * (p^11-1) / (p-1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 25] (* Amiram Eldar, Nov 08 2022 *)
PROG
(PARI) vector(100, n, sumdiv(n^10, d, if(ispower(d, 11), moebius(sqrtnint(d, 11))*sigma(n^10/d), 0))) \\ Altug Alkan, Nov 26 2015
(PARI) a(n) = {my(f = factor(n)); prod(i = 1, #f~, (f[i, 1]^11 - 1)*f[i, 1]^(10*f[i, 2] - 10)/(f[i, 1] - 1)); } \\ Amiram Eldar, Nov 08 2022
CROSSREFS
Column 11 of A263950.
Sequence in context: A270697 A075954 A011561 * A038998 A068027 A075949
KEYWORD
nonn,mult
AUTHOR
N. J. A. Sloane, Nov 19 2009
EXTENSIONS
Definition corrected by Enrique Pérez Herrero, Oct 30 2010
STATUS
approved