login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A334890 a(1) = 1; a(n) = -Sum_{d|n, d > 1} (sigma(d) - d) * a(n/d). 0
1, -1, -1, -2, -1, -4, -1, -2, -3, -6, -1, -1, -1, -8, -7, 0, -1, -4, -1, -3, -9, -12, -1, 14, -5, -14, -6, -5, -1, -2, -1, 4, -13, -18, -11, 28, -1, -20, -15, 18, -1, -6, -1, -9, -10, -24, -1, 36, -7, -18, -19, -11, -1, 12, -15, 22, -21, -30, -1, 85, -1, -32, -14, 8, -17 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = x - Sum_{k>=2} A001065(k) * A(x^k).
Dirichlet g.f.: 1 / (1 + zeta(s-1) * (zeta(s) - 1)).
MATHEMATICA
a[n_] := If[n == 1, n, -Sum[If[d > 1, (DivisorSigma[1, d] - d) a[n/d], 0], {d, Divisors[n]}]]; Table[a[n], {n, 65}]
PROG
(PARI) lista(nn) = {my(va=vector(nn)); va[1] = 1; for (n=2, nn, va[n] = -sumdiv(n, d, if (d>1, (sigma(d) - d) * va[n/d])); ); va; } \\ Michel Marcus, May 15 2020
CROSSREFS
Sequence in context: A105498 A179289 A083414 * A171174 A171173 A268671
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, May 14 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 20 11:35 EDT 2024. Contains 371838 sequences. (Running on oeis4.)