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”).

A303346
Expansion of Product_{n>=1} ((1 + 2*x^n)/(1 - 2*x^n))^(1/2).
8
1, 2, 4, 10, 18, 38, 72, 142, 260, 510, 940, 1814, 3362, 6490, 12112, 23466, 44114, 85766, 162516, 317190, 604806, 1184682, 2271248, 4461514, 8591784, 16916490, 32696708, 64496130, 125037142, 247007142, 480077432, 949510526, 1849375796, 3661330398, 7144215452
OFFSET
0,2
LINKS
FORMULA
a(n) ~ 2^n / sqrt(c*Pi*n), where c = A048651 * A083864 = 1/2 * Product_{j>=1} (2^j-1)/(2^j+1) = 0.06056210400129025123042464659093375290492912341... - Vaclav Kotesovec, Apr 22 2018
MATHEMATICA
nmax = 30; CoefficientList[Series[Product[((1 + 2*x^k)/(1 - 2*x^k))^(1/2), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Apr 22 2018 *)
nmax = 30; CoefficientList[Series[Sqrt[-QPochhammer[-2, x] / (3*QPochhammer[2, x])], {x, 0, nmax}], x] (* Vaclav Kotesovec, Apr 22 2018 *)
PROG
(PARI) N=66; x='x+O('x^N); Vec(prod(k=1, N, ((1+2*x^k)/(1-2*x^k))^(1/2)))
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 22 2018
STATUS
approved