cp's OEIS Frontend

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.

A343188 a(1) = a(2) = a(3) = 1; a(n+3) = Sum_{d|n} mu(n/d) * a(d).

This page as a plain text file.
%I A343188 #5 Apr 07 2021 19:56:03
%S A343188 1,1,1,1,0,0,0,-1,-1,-1,-2,-2,-1,-3,-2,-2,-3,-2,-1,-4,0,-2,-3,0,0,-4,
%T A343188 4,0,-3,5,3,-4,9,2,-2,11,5,-1,15,4,0,16,10,-1,20,9,1,24,12,0,25,12,1,
%U A343188 28,16,0,25,19,2,26,22,1,26,21,-2,28,25,0,20,24,-2,23,30,-3,10
%N A343188 a(1) = a(2) = a(3) = 1; a(n+3) = Sum_{d|n} mu(n/d) * a(d).
%t A343188 a[1] = a[2] = a[3] = 1; a[n_] := a[n] = Sum[MoebiusMu[(n - 3)/d] a[d], {d, Divisors[n - 3]}]; Table[a[n], {n, 75}]
%Y A343188 Cf. A007554, A307993, A318583, A343189, A343190.
%K A343188 sign
%O A343188 1,11
%A A343188 _Ilya Gutkovskiy_, Apr 07 2021