OFFSET
0,3
COMMENTS
Number of partitions of n into distinct prime parts, with 2 types of each part.
Self-convolution of A000586. - Ilya Gutkovskiy, Jan 19 2018
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..10000 (terms 0..1000 from Seiichi Manyama)
Eric Weisstein's World of Mathematics, Prime Partition
FORMULA
G.f.: Product_{k>=1} (1 + x^prime(k))^2.
log(a(n)) ~ 2*Pi*sqrt(n/(3*log(n/2))). - Vaclav Kotesovec, Jan 12 2021
EXAMPLE
a(5) = 6 because we have [5], [5'], [3, 2], [3', 2], [3, 2'], [3', 2'].
MATHEMATICA
nmax = 67; CoefficientList[Series[Product[(1 + x^Prime[k])^2, {k, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 29 2016
STATUS
approved