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.

A352062 a(1) = 1; a(n) = -Sum_{d|n, d > 1} prime(d-1) * a(n/d).

This page as a plain text file.
%I A352062 #14 Mar 05 2022 01:37:36
%S A352062 1,-2,-3,-1,-7,1,-13,-5,-10,5,-29,7,-37,11,-1,2,-53,29,-61,11,7,43,
%T A352062 -79,37,-40,51,-14,35,-107,103,-113,5,43,75,43,41,-151,87,59,97,-173,
%U A352062 169,-181,43,142,119,-199,50,-54,157,89,81,-239,170,155,151,103,159,-271,41,-281,169,276,59,207
%N A352062 a(1) = 1; a(n) = -Sum_{d|n, d > 1} prime(d-1) * a(n/d).
%C A352062 Dirichlet inverse of A008578.
%H A352062 Ilya Gutkovskiy, <a href="/A352062/a352062.jpg">Scatterplot of a(n) up to n=50000</a>
%t A352062 a[1] = 1; a[n_] := a[n] = -Sum[If[d > 1, Prime[d - 1] a[n/d], 0], {d, Divisors[n]}]; Table[a[n], {n, 65}]
%Y A352062 Cf. A008578, A030013, A030014, A034759.
%K A352062 sign
%O A352062 1,2
%A A352062 _Ilya Gutkovskiy_, Mar 04 2022