OFFSET
0,4
COMMENTS
From Gus Wiseman, May 31 2019: (Start)
Also the number of strict integer partitions of 2^n with n parts. For example, the a(1) = 1 through a(4) = 9 partitions are (A = 10):
(2) (31) (431) (6532)
(521) (6541)
(7432)
(7531)
(7621)
(8431)
(8521)
(9421)
(A321)
(End)
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..62
A. V. Sills and D. Zeilberger, Formulae for the number of partitions of n into at most m parts (using the quasi-polynomial ansatz), arXiv:1108.4391 [math.CO], 2011.
FORMULA
a(n) = [x^(2^n-n*(n+1)/2)] Product_{j=1..n} 1/(1-x^j).
a(n) ~ 2^(n*(n-1)) / (n!*(n-1)!). - Vaclav Kotesovec, Jun 05 2015
EXAMPLE
a(1) = 1: 11.
a(2) = 1: 211.
a(3) = 2: 3221, 32111.
a(4) = 9: 433321, 443221, 4322221, 4332211, 4432111, 43222111, 43321111, 432211111, 4321111111.
MATHEMATICA
a[n_] := SeriesCoefficient[Product[1/(1 - x^j), {j, 1, n}], {x, 0, 2^n - n*(n + 1)/2}];
Table[an = a[n]; Print["a(", n, ") = ", an]; an, {n, 0, 15}] (* Jean-François Alcover, Aug 19 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Feb 16 2014
STATUS
approved