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!)
A280448 Sum of the GCDs of the smaller and larger parts of the partitions of 2n into two squarefree parts. 1
1, 3, 4, 4, 6, 10, 9, 7, 6, 20, 15, 11, 17, 28, 19, 11, 23, 23, 25, 27, 36, 48, 30, 24, 12, 55, 16, 35, 39, 56, 41, 20, 55, 73, 55, 44, 50, 81, 65, 39, 53, 96, 56, 71, 33, 97, 63, 40, 29, 53, 88, 83, 71, 63, 91, 68, 98, 126, 78, 87, 80, 134, 65, 40, 107, 147, 89, 107, 119 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{i=1..n} gcd(i,2n-i) * mu(i)^2 * mu(2n-i)^2, where mu is the Möbius function (A008683).
MAPLE
with(numtheory): A280448:=n->add(gcd(2*n-i, i)*mobius(i)^2*mobius(2*n-i)^2, i=1..n): seq(A280448(n), n=1..100);
MATHEMATICA
Table[Sum[GCD[k, 2*n - k]*MoebiusMu[k]^2 * MoebiusMu[2*n - k]^2, {k, 1,
n}], {n, 1, 50}] (* G. C. Greubel, Jan 05 2017 *)
PROG
(PARI) for(n=1, 50, print1(sum(k=1, n, gcd(k, 2*n-k) * (moebius(k))^2 *(moebius(2*n-k))^2), ", ")) \\ G. C. Greubel, Jan 05 2017
CROSSREFS
Sequence in context: A363239 A047877 A351371 * A100692 A360724 A089640
KEYWORD
nonn,easy
AUTHOR
Wesley Ivan Hurt, Jan 03 2017
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 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)