OFFSET
0,3
COMMENTS
a(n) is the number of overpartitions wherein only parts that are a multiple of three may be overlined. - Alois P. Heinz, Feb 03 2025
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..5000
Wenjie Fang, Hsien-Kuei Hwang, and Mihyun Kang, Phase transitions from exp(n^(1/2)) to exp(n^(2/3)) in the asymptotics of banded plane partitions, arXiv:2004.08901 [math.CO], 2020, p. 6.
Vaclav Kotesovec, A method of finding the asymptotics of q-series based on the convolution of generating functions, arXiv:1509.08708 [math.CO], 2015-2016.
FORMULA
a(n) ~ sqrt(7) * exp(sqrt(7*n)*Pi/3) / (24*n).
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
b(n, i-1)+`if`(irem(i, 3)=0, 2, 1)*add(b(n-i*j, i-1), j=1..n/i)))
end:
a:= n-> b(n$2):
seq(a(n), n=0..50); # Alois P. Heinz, Feb 03 2025
MATHEMATICA
nmax = 50; CoefficientList[Series[Product[(1+x^(3*k))/(1-x^k), {k, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Jan 02 2016
STATUS
approved