login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A281356
G.f.: 1 + Sum_{n>=1} x^(3*n-2) / Product_{k=1..n} (1-x^k).
1
1, 1, 1, 1, 2, 2, 3, 4, 5, 6, 9, 10, 13, 17, 21, 25, 33, 39, 49, 60, 73, 88, 110, 130, 158, 191, 230, 273, 331, 391, 468, 556, 660, 779, 927, 1087, 1284, 1510, 1775, 2075, 2438, 2842, 3323, 3872, 4510
OFFSET
0,5
LINKS
FORMULA
a(n) ~ Pi^2 * exp(Pi*sqrt(2*n/3)) / (12*sqrt(3)*n^2). - Vaclav Kotesovec, Oct 13 2017
MATHEMATICA
nmax = 50; CoefficientList[Series[1 + Sum[x^(3*k-2)/QPochhammer[x, x, k], {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Oct 13 2017 *)
Flatten[{1, Table[PartitionsP[n] - PartitionsP[n-1] - PartitionsP[n-2] + PartitionsP[n-3], {n, 3, 50}]}] (* Vaclav Kotesovec, Oct 13 2017 *)
CROSSREFS
Apart from leading term, essentially identical to A008483.
Sequence in context: A351595 A027195 A008483 * A026796 A008925 A266749
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 22 2017
STATUS
approved