[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

a(n) = number of partitions of n into semiprimes (more precisely, number of ways of writing n as a sum of products of 2 distinct primes).
(Formerly M0205 N0076)
27

%I M0205 N0076 #26 Nov 26 2020 12:19:28

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

%T 4,7,3,6,5,8,6,10,6,10,9,12,9,15,11,16,14,18,14,22,19,25,22,27,23,33,

%U 29,36,33,40,38,49,43,53,51,61,57,71,64,77,76,89,86,102,96,113,111,128,125

%N a(n) = number of partitions of n into semiprimes (more precisely, number of ways of writing n as a sum of products of 2 distinct primes).

%D L. M. Chawla and S. A. Shad, On a restricted partition function t(n) and its table, J. Natural Sciences and Mathematics, 9 (1969), 217-221. Math. Rev. 41 #6761.

%D N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H T. D. Noe, <a href="/A002100/b002100.txt">Table of n, a(n) for n = 1..1000</a>

%e a(20) = 2: 20 = 2*3 + 2*7 = 2*5 + 2*5.

%t a[n_] := SeriesCoefficient[1/Product[If[SquareFreeQ[k] && PrimeNu[k] == 2, 1 - z^k, 1], {k, 1, n}], {z, 0, n}];

%t Array[a, 100] (* _Jean-François Alcover_, Nov 26 2020, after PARI *)

%o (PARI) a(n)=polcoeff(1/prod(k=1,n,if(issquarefree(k)*if(omega(k)-2,0,1),1-z^k,1))+O(z^(n+1)),n)

%o (Haskell)

%o a002100 = p a006881_list where

%o p _ 0 = 1

%o p ks'@(k:ks) m = if m < k then 0 else p ks' (m - k) + p ks m

%o -- _Reinhard Zumkeller_, Mar 21 2014

%Y Cf. A006881, A073576, A101048.

%K nonn

%O 1,20

%A _N. J. A. Sloane_

%E More terms from _Benoit Cloitre_, Jun 01 2003