OFFSET
0,3
COMMENTS
Also number of partitions of n such that if the number of parts is k, then the smallest part is at least floor(k/2). Example: a(8)=11 because we have [8],[7,1],[6,2],[5,3],[4,4],[6,1,1],[5,2,1],[4,3,1],[4,2,2],[3,3,2] and [2,2,2,2].
Also number of partitions of 2*n into distinct parts with either all parts odd or all parts even. - Vladeta Jovovic, Jul 03 2007
FORMULA
G.f.=sum(x^(k*floor(k/2))/product(1-x^j, j=1..k), k=1..infinity).
a(n) ~ (2 + sqrt(2)) * exp(sqrt(n/3)*Pi) / (8*3^(1/4)*n^(3/4)). - Vaclav Kotesovec, Mar 06 2020
EXAMPLE
a(8)=11 because we have [4,4],[3,3,2],[3,3,1,1],[3,2,2,1],[3,2,1,1,1],[3,1,1,1,1,1],[2,2,2,2],[2,2,2,1,1],[2,2,1,1,1,1],[2,1,1,1,1,1,1] and [1,1,1,1,1,1,1,1].
MAPLE
g:=sum(x^(k*floor(k/2))/product(1-x^j, j=1..k), k=1..15): gser:=series(g, x=0, 65): seq(coeff(gser, x, n), n=0..60);
CROSSREFS
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Apr 12 2006
STATUS
approved