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!)
A280829 Number of partitions of n into two squarefree semiprimes. 3

%I #19 Feb 05 2018 02:59:01

%S 0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,2,1,0,0,1,1,0,1,2,1,1,1,2,0,0,

%T 1,3,1,0,1,2,2,1,2,3,2,0,2,4,3,1,0,3,2,2,2,3,2,0,2,4,5,0,1,2,3,2,3,5,

%U 2,2,3,7,4,1,2,3,4,2,5,4,2,0,4,6,2,2,2,4,3,4

%N Number of partitions of n into two squarefree semiprimes.

%H Indranil Ghosh, <a href="/A280829/b280829.txt">Table of n, a(n) for n = 1..1000</a>

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

%F a(n) = Sum_{i=2..floor(n/2)} A280710(i) * A280710(n-i).

%e a(20) = 2; there are 2 partitions of 20 into two squarefree semiprimes: (14,6) and (10,10).

%p with(numtheory): A280829:=n->add(floor(bigomega(i)*mobius(i)^2/2)*floor(2*mobius(i)^2/bigomega(i))*floor(bigomega(n-i)*mobius(i)^2/2)*floor(2*mobius(n-i)^2/bigomega(n-i)), i=2..floor(n/2)): seq(A280829(n), n=1..100);

%t Table[Sum[Floor[PrimeOmega[i] MoebiusMu[i]^2 / 2] Floor[2 MoebiusMu[i]^2 / PrimeOmega[i]] Floor[PrimeOmega[n - i] MoebiusMu[i]^2 / 2] Floor[2 MoebiusMu[n - i]^2 / PrimeOmega[n - i]], {i, 2, Floor[n/2]}], {n, 1, 90}] (* _Indranil Ghosh_, Mar 10 2017, translated from Maple code *)

%o (PARI) for(n=1, 90, print1(sum(i=2, floor(n/2), floor(bigomega(i) * moebius(i)^2 / 2) * floor(2 * moebius(i)^2 / bigomega(i)) * floor(bigomega(n - i) * moebius(i)^2 / 2) * floor(2 * moebius(n - i)^2 / bigomega(n - i))),", ")) \\ _Indranil Ghosh_, Mar 10 2017

%Y Cf. A006881, A071068, A280710.

%K nonn,easy

%O 1,20

%A _Wesley Ivan Hurt_, Jan 08 2017

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 August 9 18:45 EDT 2024. Contains 375044 sequences. (Running on oeis4.)