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 A007444 M0156 #34 Jul 08 2025 17:04:32 %S A007444 2,1,3,4,9,7,15,12,18,17,29,20,39,25,33,34,57,30,65,38,53,47,81,40,86, %T A007444 59,80,60,107,41,125,78,103,79,123,66,155,95,123,90,177,75,189,110, %U A007444 132,115,209,100,210,114,171,134,239 %N A007444 Moebius transform of primes. %D A007444 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence). %H A007444 Michel Marcus, <a href="/A007444/b007444.txt">Table of n, a(n) for n = 1..10000</a> %H A007444 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a> %F A007444 G.f.: Sum_{n>=1} a(n)*x^n/(1 - x^n) = Sum_{n>=1} prime(n)*x^n. - _Ilya Gutkovskiy_, Apr 25 2017 %F A007444 a(n) = Sum_{d|n} prime(d)*mu(n/d), where mu is the Moebius function (A008683). - _Wesley Ivan Hurt_, Sep 23 2020 %t A007444 a[n_] := DivisorSum[n, Prime[#] * MoebiusMu[n/#] &]; Array[a, 200] (* _Enrique Pérez Herrero_, Sep 23 2020 *) %o A007444 (PARI) a(n) = sumdiv(n, d, prime(d)*moebius(n/d)); \\ _Michel Marcus_, Nov 04 2018 %Y A007444 Cf. A000040, A008683. %K A007444 nonn %O A007444 1,1 %A A007444 _N. J. A. Sloane_