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.
%I A328722 #17 Sep 15 2023 05:44:45 %S A328722 1,-4,-6,4,-10,24,-14,0,9,40,-22,-24,-26,56,60,0,-34,-36,-38,-40,84, %T A328722 88,-46,0,25,104,0,-56,-58,-240,-62,0,132,136,140,36,-74,152,156,0, %U A328722 -82,-336,-86,-88,-90,184,-94,0,49,-100,204,-104,-106,0,220,0,228,232,-118,240 %N A328722 Dirichlet g.f.: 1 / zeta(s-1)^2. %C A328722 Dirichlet inverse of A038040. %C A328722 Dirichlet convolution of A055615 with itself. %C A328722 Moebius transform of A101035. %H A328722 Antti Karttunen, <a href="/A328722/b328722.txt">Table of n, a(n) for n = 1..20000</a> %F A328722 a(1) = 1; a(n) = -Sum_{d|n, d<n} A038040(n/d) * a(d). %F A328722 a(n) = n * A007427(n). %F A328722 a(n) = Sum_{d|n} mu(n/d) * A101035(d). %F A328722 Multiplicative with a(p) = -2*p, a(p^2) = p^2, and a(p) = 0 for e >= 3. - _Amiram Eldar_, Sep 15 2023 %t A328722 a[1] = 1; a[n_] := -Sum[(n/d) DivisorSigma[0, n/d] a[d], {d, Most @ Divisors[n]}]; Table[a[n], {n, 1, 60}] %t A328722 Table[n DivisorSum[n, MoebiusMu[n/#] MoebiusMu[#] &], {n, 1, 60}] %t A328722 f[p_, e_] := Switch[e, 1, -2*p, 2, p^2, _, 0]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* _Amiram Eldar_, Sep 15 2023 *) %o A328722 (PARI) for(n=1, 100, print1(direuler(p=2, n, (1 - p*X)^2)[n], ", ")) \\ _Vaclav Kotesovec_, Aug 22 2021 %o A328722 (PARI) %o A328722 A007427(n) = if(n<1, 0, sumdiv(n, d, moebius(d) * moebius(n/d))); \\ From A007427 %o A328722 A328722(n) = (n*A007427(n)); \\ _Antti Karttunen_, Nov 15 2021 %Y A328722 Cf. A007427, A008683, A038040, A046099 (positions of 0's), A055615, A101035. %K A328722 sign,easy,mult %O A328722 1,2 %A A328722 _Ilya Gutkovskiy_, Oct 26 2019