login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A261563 Expansion of Product_{k>=1} ((1 + 2*x^k)/(1 - 2*x^k))^k. 5
1, 4, 16, 60, 192, 596, 1744, 4892, 13248, 34868, 89296, 223660, 548928, 1323060, 3137520, 7332332, 16907584, 38517444, 86777328, 193523404, 427562816, 936555044, 2035286576, 4390850268, 9409096576, 20037827876, 42429318480, 89369282460, 187325508288 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ c * 2^n, where c = 2 * Product_{j>=1} ((1 + 1/2^j)/(1 - 1/2^j))^(j+1) = 1021.5383556752320172813996404366861329314041364322798995039038143325883...
G.f.: exp( Sum_{n>=1} x^n/n * Sum_{d|n} (2^d - (-2)^d) * n^2/d^2 ). - Paul D. Hanna, Sep 30 2015
MATHEMATICA
nmax = 50; CoefficientList[Series[Product[((1 + 2*x^k)/(1 - 2*x^k))^k, {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 50; CoefficientList[Series[Exp[Sum[2^(2*k)/(2*k-1)*x^(2*k-1)/(1 - x^(2*k-1))^2, {k, 1, nmax}]], {x, 0, nmax}], x]
PROG
(PARI) {a(n) = polcoeff( exp( sum(m=1, n, x^m/m * sumdiv(m, d, (2^d - (-2)^d) * m^2/d^2) ) +x*O(x^n)), n)}
for(n=0, 40, print1(a(n), ", ")) \\ Paul D. Hanna, Sep 30 2015
CROSSREFS
Sequence in context: A330791 A032094 A282083 * A265955 A217374 A055295
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Aug 24 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 17:38 EDT 2024. Contains 371797 sequences. (Running on oeis4.)