A339381 Number of partitions of n into an odd number of primes (counting 1 as a prime).
0, 1, 1, 2, 1, 4, 3, 7, 5, 11, 9, 18, 14, 27, 22, 40, 33, 58, 48, 82, 69, 114, 97, 157, 134, 212, 183, 284, 246, 376, 327, 493, 431, 640, 562, 825, 728, 1056, 934, 1341, 1191, 1694, 1508, 2126, 1899, 2654, 2377, 3297, 2960, 4075, 3668, 5015, 4523, 6145, 5554, 7499
Offset: 0
Keywords
Examples
a(6) = 3 because we have [3, 2, 1], [2, 2, 2] and [2, 1, 1, 1, 1].
Crossrefs
Programs
-
Maple
b:= proc(n, i, t) option remember; (p-> `if`(n=0, t, `if`(i<0, 0, b(n, i-1, t)+ `if`(p>n, 0, b(n-p, i, 1-t)))))(`if`(i<1, 1, ithprime(i))) end: a:= n-> b(n, numtheory[pi](n), 0): seq(a(n), n=0..60); # Alois P. Heinz, Dec 02 2020
-
Mathematica
nmax = 55; CoefficientList[Series[(1/2) ((1/(1 - x)) Product[1/(1 - x^Prime[k]), {k, 1, nmax}] - (1/(1 + x)) Product[1/(1 + x^Prime[k]), {k, 1, nmax}]), {x, 0, nmax}], x]