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 A343189 #5 Apr 07 2021 19:56:09 %S A343189 1,1,1,1,1,0,0,0,0,-1,-1,-1,-1,-2,-2,-1,-2,-2,-3,-1,-3,-1,-4,0,-3,0, %T A343189 -5,2,-4,1,-5,4,-5,6,-6,5,-4,8,-6,8,-5,11,-5,10,-6,17,-6,11,-3,21,-7, %U A343189 12,-3,26,-5,12,-4,33,-4,11,-1,37,-5,11,-2,42,-1,7,-1,48,-2,1,3,58,-3 %N A343189 a(1) = ... = a(4) = 1; a(n+4) = Sum_{d|n} mu(n/d) * a(d). %t A343189 a[1] = a[2] = a[3] = a[4] = 1; a[n_] := a[n] = Sum[MoebiusMu[(n - 4)/d] a[d], {d, Divisors[n - 4]}]; Table[a[n], {n, 75}] %Y A343189 Cf. A007554, A307994, A318583, A343188, A343190. %K A343189 sign %O A343189 1,14 %A A343189 _Ilya Gutkovskiy_, Apr 07 2021