OFFSET
0,3
COMMENTS
a(n) = Sum_{k=0..n} k*A264394(n,k).
FORMULA
G.f.: ( Sum_{i>0} x^(h(i))/(1-x^(h(i))) ) / ( Product_{i>0} 1-x^i ), where h(i) = 2^i - 1.
EXAMPLE
a(4) = 8 because the partitions of 4 are [4], [3',1'], [2,2], [2,1',1'], [1',1',1',1'], where the Mersenne number parts are marked.
MAPLE
h := proc (i) options operator, arrow: 2^i-1 end proc: g := (sum(x^h(i)/(1-x^h(i)), i = 1..31))/(product(1-x^i, i = 1..100)); hser := series(g, x = 0, 55): seq(coeff(hser, x, n), n = 0 .. 50);
CROSSREFS
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Nov 13 2015
STATUS
approved