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!)
A184171 Number of partitions of n into an even number of distinct primes. 10

%I #34 Mar 31 2023 18:05:43

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

%T 5,4,6,5,5,6,7,7,8,7,9,8,9,8,11,11,12,10,13,12,14,14,15,16,17,16,20,

%U 19,20,20,24,22,26,23,27,27,30,28,34,33,36,34,40,37,43,41,46,46,50,47,56,55

%N Number of partitions of n into an even number of distinct primes.

%H Seiichi Manyama, <a href="/A184171/b184171.txt">Table of n, a(n) for n = 0..10000</a> (terms 0..2000 from Alois P. Heinz)

%F G.f.: (1/2)*[Product_{k>=1} (1+z^prime(k)) + Product_{k>=1} (1-z^prime(k))].

%F a(n) = Sum_{k>=0} A219180(n,2*k). - _Alois P. Heinz_, Nov 15 2012

%F a(n) + A184172(n) = A000586(n). - _R. J. Mathar_, Mar 31 2023

%e a(33) = 5 because we have [31,2], [23,5,3,2], [19,7,5,2], [17,11,3,2], and [13,11,7,2].

%p g := 1/2*(Product(1+z^ithprime(k), k = 1 .. 120)+Product(1-z^ithprime(k), k = 1 .. 120)): gser := series(g, z = 0, 110): seq(coeff(gser, z, n), n = 0 .. 85);

%p # second Maple program

%p with(numtheory):

%p b:= proc(n, i) option remember;

%p `if`(n=0, [1], `if`(i<1, [], zip((x, y)->x+y, b(n, i-1),

%p [0, `if`(ithprime(i)>n, [], b(n-ithprime(i), i-1))[]], 0)))

%p end:

%p a:= proc(n) local l; l:= b(n, pi(n));

%p add(l[2*i-1], i=1..iquo(nops(l)+1,2))

%p end:

%p seq(a(n), n=0..100); # _Alois P. Heinz_, Nov 15 2012

%t b[n_, i_] := b[n, i] = If[n == 0, {1}, If[i<1, {}, Plus @@ PadRight[{b[n, i-1], Join[{0}, If[Prime[i]>n, {}, b[n-Prime[i], i-1]]]}]]]; a[n_] := Module[{l}, l = b[n, PrimePi[n]]; Sum[l[[2*i-1]], {i, 1, Quotient[Length[l]+1, 2]}]]; Table[a[n], {n, 0, 100}] (* _Jean-François Alcover_, Jan 30 2014, after _Alois P. Heinz_ *)

%o (PARI)

%o parts(n, pred, y)={prod(k=1, n, 1 + if(pred(k), y*x^k + O(x*x^n), 0))}

%o {my(n=80); Vec(parts(n, isprime, 1) + parts(n, isprime, -1))/2} \\ _Andrew Howroyd_, Dec 28 2017

%Y Cf. A000586, A184172, A184198.

%K nonn

%O 0,17

%A _Emeric Deutsch_, (suggested by _R. J. Mathar_), Jan 09 2011

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 17 21:01 EDT 2024. Contains 371767 sequences. (Running on oeis4.)