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!)
A140664 a(n) = A014963(n)*mobius(n). 4
1, -2, -3, 0, -5, 1, -7, 0, 0, 1, -11, 0, -13, 1, 1, 0, -17, 0, -19, 0, 1, 1, -23, 0, 0, 1, 0, 0, -29, -1, -31, 0, 1, 1, 1, 0, -37, 1, 1, 0, -41, -1, -43, 0, 0, 1, -47, 0, 0, 0, 1, 0, -53, 0, 1, 0, 1, 1, -59, 0, -61, 1, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A008683 = A140579^(-1) * A140664 - Gary W. Adamson, May 20 2008
LINKS
FORMULA
A140579 as an infinite lower triangular matrix * A008683 as a vector, where A008683 = the mu sequence and A140579 is a diagonalized matrix version of A014963. Given the A008683, the mu sequence (1, -1, -1, 0, -1, 1, -1, 0, 0, 1,...), replace (-1) with (-n). Other mu(n) remain the same.
MAPLE
A140664 := proc(n)
A014963(n)*numtheory[mobius](n) ;
end proc:
seq(A140664(n), n=1..80) ; # R. J. Mathar, Apr 05 2012
MATHEMATICA
Table[Exp[MangoldtLambda[n]]*MoebiusMu[n], {n, 1, 75}] (* G. C. Greubel, Feb 15 2019 *)
PROG
(PARI) {a(n) = if(n==1, 1, gcd(vector(n-1, k, binomial(n, k)))*moebius(n))};
vector(75, n, a(n)) \\ G. C. Greubel, Feb 15 2019
(Sage)
def A140664(n): return simplify(exp(add(moebius(d)*log(n/d) for d in divisors(n))))*moebius(n)
[A140664(n) for n in (1..75)] # G. C. Greubel, Feb 15 2019
CROSSREFS
Sequence in context: A243868 A066398 A138197 * A335940 A339767 A071321
KEYWORD
sign
AUTHOR
Gary W. Adamson and Mats Granvik, May 20 2008
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)