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!)
A143443 a(n) = n * A002321(n). 2
1, 0, -3, -4, -10, -6, -14, -16, -18, -10, -22, -24, -39, -28, -15, -16, -34, -36, -57, -60, -42, -22, -46, -48, -50, -26, -27, -28, -58, -90, -124, -128, -99, -68, -35, -36, -74, -38, 0, 0, -41, -84, -129, -132 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Equals row sums of triangle A143442.
LINKS
EXAMPLE
First four terms = (1, 0, -3, -4) = (1*1, 2*0, 3*(-1), 4*(-1)), where the Mertens function A002321 = (1, 0, -1, -1, -2, -1, -2, -2, -2,...)
a(5) = -10 = sum of row 5 terms of triangle A143442: (5 - 5 - 5 + 0 - 5).
MATHEMATICA
Table[n Plus @@ MoebiusMu[Range[n]], {n, 1, 80}] (* Carl Najafi, Aug 17 2011 *)
PROG
(PARI) a(n) = n*sum(k=1, n, moebius(k)); \\ Michel Marcus, Aug 22 2015
(Python)
from functools import lru_cache
@lru_cache(maxsize=None)
def A143443(n):
if n == 0:
return 0
c, j = n, 2
k1 = n//j
while k1 > 1:
j2 = n//k1 + 1
c += (j2-j)*A143443(k1)//k1
j, k1 = j2, n//j2
return n*(j-c) # Chai Wah Wu, Mar 30 2021
CROSSREFS
Sequence in context: A183170 A014411 A247372 * A139556 A191150 A023896
KEYWORD
sign
AUTHOR
Gary W. Adamson, Aug 15 2008
EXTENSIONS
More terms from Carl Najafi, Aug 17 2011
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 May 2 19:04 EDT 2024. Contains 372203 sequences. (Running on oeis4.)