cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A160959 a(n) = ((2^b-1)/phi(n))*Sum_{d|n} Moebius(n/d)*d^(b-1) for b = 10.

This page as a plain text file.
%I A160959 #14 Nov 09 2022 07:55:40
%S A160959 1023,522753,10067343,133824768,499511463,5144412273,6880289823,
%T A160959 34259140608,66051837423,255250357593,241218048687,1316969541888,
%U A160959 904033571463,3515828099553,4915692307383,8770339995648,7582212353463,33752488923153,18339417490383,65344091543808
%N A160959 a(n) = ((2^b-1)/phi(n))*Sum_{d|n} Moebius(n/d)*d^(b-1) for b = 10.
%H A160959 Amiram Eldar, <a href="/A160959/b160959.txt">Table of n, a(n) for n = 1..10000</a>
%H A160959 Jin Ho Kwak and Jaeun Lee, <a href="https://doi.org/10.1142/9789812799890_0005">Enumeration of graph coverings, surface branched coverings and related group theory</a>, in Combinatorial and Computational Mathematics (Pohang, 2000), ed. S. Hong et al., World Scientific, Singapore 2001, pp. 97-161. See p. 134.
%F A160959 a(n) = 1023*A160953(n). - _R. J. Mathar_, Mar 16 2016
%F A160959 From _Amiram Eldar_, Nov 08 2022: (Start)
%F A160959 Sum_{k=1..n} a(k) ~ c * n^9, where c = (341/3) * Product_{p prime} (1 + (p^8-1)/((p-1)*p^9)) = 220.6296374... .
%F A160959 Sum_{k>=1} 1/a(k) = (zeta(8)*zeta(9)/1023) * Product_{p prime} (1 - 2/p^9 + 1/p^17) = 0.0009795392562... . (End)
%t A160959 f[p_, e_] := p^(8*e - 8) * (p^9-1) / (p-1); a[1] = 1023; a[n_] := 1023 * Times @@ f @@@ FactorInteger[n]; Array[a, 25] (* _Amiram Eldar_, Nov 08 2022 *)
%o A160959 (PARI) a(n) = {my(f = factor(n)); 1023 * prod(i = 1, #f~, (f[i,1]^9 - 1)*f[i,1]^(8*f[i,2] - 8)/(f[i,1] - 1));} \\ _Amiram Eldar_, Nov 08 2022
%Y A160959 Cf. A000010, A013666, A013667, A160953.
%K A160959 nonn
%O A160959 1,1
%A A160959 _N. J. A. Sloane_, Nov 19 2009