A362641 Product of the smaller primes, p, in the Goldbach partitions of 2n such that p + q = 2n, p <= q, and p,q prime (or 1 if no Goldbach partition of 2n exists).
1, 2, 3, 3, 15, 5, 21, 15, 35, 21, 165, 385, 273, 55, 1001, 39, 2805, 7735, 133, 561, 13585, 273, 5865, 124355, 5187, 1265, 391391, 741, 27115, 19605131, 1767, 64515, 5766215, 217, 374187, 12212915, 313131, 170085, 142635185, 63973, 902451, 13147103255, 223041, 101065, 818183948197
Offset: 1
Examples
a(10) = 21; 2*10 = 20 has two Goldbach partitions, namely 17+3 and 13+7. The product of the smaller parts of these partitions, is 3*7 = 21.
Links
- Eric Weisstein's World of Mathematics, Goldbach Partition
- Wikipedia, Goldbach's conjecture
- Index entries for sequences related to Goldbach conjecture
- Index entries for sequences related to partitions
Crossrefs
Programs
-
Mathematica
Table[Product[k^((PrimePi[k] - PrimePi[k - 1]) (PrimePi[2 n - k] - PrimePi[2 n - k - 1])), {k, n}], {n, 40}]