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!)
A140668 a(n) = n + A140664(n). 1
2, 0, 0, 4, 0, 7, 0, 8, 9, 11, 0, 12, 0, 15, 16, 16, 0, 18, 0, 20, 22, 23, 0, 24, 25, 27, 27, 28, 0, 29, 0, 32, 34, 35, 36, 36, 0, 39, 40, 40, 0, 41, 0, 44, 45, 47, 0, 48, 49, 50, 52, 52, 0, 54, 56, 56, 58, 59, 0, 60, 0, 63, 63, 64, 66, 65, 0, 68, 70, 69, 0, 72, 0, 75, 75, 76, 78, 77, 0, 80, 81, 83, 0, 84, 86, 87, 88, 88, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
For n>1, a(n) = n iff mu(n) = 0; 0 if n is prime; and (n+1) iff mu(n) = 1.
LINKS
FORMULA
a(n) = n + A140664(n), where A140664 = (1, -2, -3, 0, -5, 1, -7, 0, 0, 1,...)
EXAMPLE
a(4) = 4 = 4 + A140664(4) = 4 + 0.
MATHEMATICA
Table[Exp[MangoldtLambda[n]]*MoebiusMu[n] + n, {n, 100}] (* G. C. Greubel, Feb 13 2019 *)
PROG
(PARI)
A014963(n) = ispower(n, , &n); if(isprime(n), n, 1); \\ From A014963
A140664(n) = (moebius(n)*A014963(n));
A140668(n) = (n+A140664(n)); \\ Antti Karttunen, Feb 13 2019
(Sage)
def A140668(n): return simplify(exp(add(moebius(d)*log(n/d) for d in divisors(n))))*moebius(n) + n
[A140668(n) for n in (1..100)] # G. C. Greubel, Feb 13 2019
CROSSREFS
Sequence in context: A137513 A365714 A221419 * A353369 A323900 A349347
KEYWORD
nonn
AUTHOR
Gary W. Adamson and Mats Granvik, May 20 2008
EXTENSIONS
More terms from Antti Karttunen, Feb 13 2019
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 18 18:49 EDT 2024. Contains 371781 sequences. (Running on oeis4.)