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!)
A303221 Total area of all rectangles with dimensions p and p + q such that p and q are both squarefree, n = p + q and p <= q. 1
0, 2, 3, 12, 10, 24, 21, 48, 45, 80, 66, 168, 143, 154, 120, 272, 306, 288, 247, 640, 525, 594, 437, 936, 800, 1014, 945, 1624, 1160, 1410, 992, 1952, 1551, 2210, 1435, 3348, 2146, 2546, 2106, 3800, 2993, 3360, 3827, 5720, 4905, 4324, 4089, 6816, 5390, 5300 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = n * Sum_{i=1..floor(n/2)} i * mu(i)^2 * mu(n-i)^2, where mu is the Möbius function (A008683).
a(n) = n * A261985(n). - Wesley Ivan Hurt, Jan 05 2024
MATHEMATICA
Table[n*Sum[i*MoebiusMu[i]^2 MoebiusMu[n - i]^2, {i, Floor[n/2]}], {n, 80}]
PROG
(Magma) [0] cat [&+[n*k*MoebiusMu(k)^2*MoebiusMu(n-k)^2: k in [1..Floor(n/2)]]: n in [2..60]]; // Vincenzo Librandi, Apr 21 2018
(PARI) a(n) = n * sum(i=1, n\2, i * moebius(i)^2 * moebius(n-i)^2); \\ Michel Marcus, Apr 21 2018
CROSSREFS
Sequence in context: A075711 A079077 A027611 * A345049 A168059 A068550
KEYWORD
nonn,easy
AUTHOR
Wesley Ivan Hurt, Apr 19 2018
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 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)