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 A378536 #8 Dec 01 2024 19:54:30 %S A378536 1,-1,-2,-2,-4,1,-6,0,-3,3,-10,5,-12,5,7,0,-16,5,-18,9,11,9,-22,2,-5, %T A378536 11,0,13,-28,-1,-30,0,19,15,23,5,-36,17,23,2,-40,-3,-42,21,14,21,-46, %U A378536 0,-7,9,31,25,-52,3,39,2,35,27,-58,-18,-60,29,20,0,47,-7,-66,33,43,-13,-70,-5,-72,35,14,37,59,-9,-78,0,0 %N A378536 Inverse Möbius transform of A378525. %C A378536 Dirichlet inverse of A378535, which is Möbius transform of A378542, where A378542 is the sum of divisors d of n such that n/d has an even number of prime factors (counted with multiplicity). %H A378536 Antti Karttunen, <a href="/A378536/b378536.txt">Table of n, a(n) for n = 1..20000</a> %F A378536 a(n) = Sum_{d|n} A378525(d). %o A378536 (PARI) %o A378536 memoA378525 = Map(); %o A378536 A378525(n) = if(1==n,1,my(v); if(mapisdefined(memoA378525,n,&v), v, v = -sumdiv(n,d,if(d<n,A378542(n/d)*A378525(d),0)); mapput(memoA378525,n,v); (v))); %o A378536 A378536(n) = sumdiv(n,d,A378525(d)); %Y A378536 Cf. A378525, A378535 (Dirichlet inverse), A378542. %K A378536 sign %O A378536 1,3 %A A378536 _Antti Karttunen_, Dec 01 2024