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 A300717 #42 Dec 06 2022 07:57:16 %S A300717 1,0,0,1,0,0,0,2,2,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,6,0,0,0,0,8,0,0, %T A300717 0,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0, %U A300717 0,0,0,4,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,6 %N A300717 Möbius transform of A003557, n divided by its largest squarefree divisor. %C A300717 Multiplicative because A003557 is. - _Andrew Howroyd_, Jul 27 2018 %H A300717 Antti Karttunen, <a href="/A300717/b300717.txt">Table of n, a(n) for n = 1..65537</a> %F A300717 a(n) = Sum_{d|n} A008683(n/d)*A003557(d). %F A300717 a(n) = A000010(n) - A300718(n). %F A300717 a(n) = A003557(n) - A300719(n). %F A300717 Multiplicative with a(p) = 0 and a(p^e) = (p-1)*p^(e-2) for prime p and e>1. - _Werner Schulte_, Sep 27 2018 %F A300717 Dirichlet convolution with A003958 equals A000010. - _Werner Schulte_, Sep 28 2018 %F A300717 a(n) = Sum_{d|n} mu(d)*phi(d)*phi(n/d). - _Ridouane Oudra_, Nov 18 2019 %F A300717 Dirichlet convolution of A000010 and A097945. - _R. J. Mathar_, Jun 02 2020 %F A300717 From _Richard L. Ollerton_, May 07 2021: (Start) %F A300717 a(n) = Sum_{k=1..n} phi(gcd(n,k))*mu(gcd(n,k)). %F A300717 a(n) = Sum_{k=1..n} phi(gcd(n,k))*mu(n/gcd(n,k)). (End) %p A300717 with(numtheory): A003557 := n -> n/ilcm(op(numtheory[factorset](n))): %p A300717 seq(add(mobius(d)*A003557(n/d), d in divisors(n)), n=1..100); # _Ridouane Oudra_, Nov 18 2019 %t A300717 Table[DivisorSum[n, MoebiusMu[#] EulerPhi[#] EulerPhi[n/#] &], {n, 108}] (* _Michael De Vlieger_, Nov 18 2019 *) %t A300717 f[p_, e_] := If[e == 1, 0, (p - 1)*p^(e - 2)]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* _Amiram Eldar_, Dec 06 2022 *) %o A300717 (PARI) %o A300717 A003557(n) = { my(f=factor(n)); for (i=1, #f~, f[i, 2] = max(0,f[i, 2]-1)); factorback(f); }; \\ From A003557 %o A300717 A300717(n) = sumdiv(n,d,moebius(n/d)*A003557(d)); %o A300717 (PARI) a(n) = {my(f = factor(n)); prod(i = 1, #f~, if(f[i,2] == 1, 0, (f[i,1] - 1)*f[i,1]^(f[i,2] - 2)));} \\ _Amiram Eldar_, Dec 06 2022 %Y A300717 Cf. A000010, A008683, A003557, A300718, A300719, A003958. %K A300717 nonn,mult %O A300717 1,8 %A A300717 _Antti Karttunen_, Mar 11 2018