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!)
A294247 Sum of the parts in the partitions of n into exactly two distinct squarefree parts. 2

%I #29 May 03 2024 13:17:57

%S 0,0,3,4,5,6,14,24,18,10,22,36,39,28,45,80,68,72,57,100,84,88,92,168,

%T 125,104,135,168,145,120,155,256,198,204,210,396,259,228,273,440,328,

%U 294,387,528,450,322,376,624,490,400,357,676,530,540,385,728,570

%N Sum of the parts in the partitions of n into exactly two distinct squarefree parts.

%C Sum of the semiperimeters of the distinct rectangles with squarefree length and width such that L + W = n, W < L.

%H <a href="/index/Par#part">Index entries for sequences related to partitions</a>

%F a(n) = n * Sum_{i=1..floor((n-1)/2)} mu(i)^2 * mu(n-i)^2, where mu(n) is the Möbius function (A008683).

%e For n = 4,5,6,7 the partitions are respectively 1+3 (sum a(4) = 4), 2+3 (sum 5), 1+5 (sum 6), 1+6 and 2+5 (sum 7+7=14). - _N. J. A. Sloane_, Oct 28 2017

%t Table[n*Sum[MoebiusMu[i]^2*MoebiusMu[n - i]^2, {i, Floor[(n-1)/2]}], {n, 80}]

%o (Python)

%o from sympy import mobius

%o def a(n): return n*sum(mobius(i)**2*mobius(n - i)**2 for i in range(1, ((n - 1)//2) + 1))

%o print([a(n) for n in range(1, 51)]) # _Indranil Ghosh_, Nov 07 2017

%o (R)

%o require(numbers)

%o a <- function(n) {

%o if (n<3) return(0)

%o S <- numeric()

%o for (i in 1:floor((n-1)/2)) S <- c(S, moebius(i)^2*moebius(n-i)^2)

%o return(n*sum(S))

%o }

%o sapply(1:100, a) # _Indranil Ghosh_, Nov 07 2017

%Y Cf. A008683, A262351.

%K nonn,easy,changed

%O 1,3

%A _Wesley Ivan Hurt_, Oct 25 2017; recomputed Oct 26 2017 with thanks to _Andrey Zabolotskiy_

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 3 16:50 EDT 2024. Contains 372221 sequences. (Running on oeis4.)