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!)
A261561 Expansion of Product_{k>=1} (1/(1 - 2*x^k))^k. 5
1, 2, 8, 22, 64, 162, 424, 1022, 2480, 5770, 13336, 30046, 67184, 147554, 321592, 692278, 1479568, 3133474, 6596008, 13788606, 28679264, 59335530, 122256456, 250875550, 513116864, 1046190786, 2127557592, 4316282006, 8739096992, 17661731138, 35639764536 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..2000 (first 1001 terms from Vaclav Kotesovec)
FORMULA
a(n) ~ c * 2^n, where c = Product_{j>=1} 1/(1 - 1/2^j)^(j+1) = 34.7387234654851595844514193757064296508992247003230539635669599773458896...
G.f.: exp( Sum_{n>=1} x^n/n * Sum_{d|n} 2^d * n^2/d^2 ). - Paul D. Hanna, Sep 30 2015
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(2^j*binomial(i+j-1, j)*b(n-i*j, i-1), j=0..n/i)))
end:
a:= n-> b(n$2):
seq(a(n), n=0..40); # Alois P. Heinz, Sep 21 2018
MATHEMATICA
nmax = 50; CoefficientList[Series[Product[(1/(1 - 2*x^k))^k, {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 50; CoefficientList[Series[Exp[Sum[2^k/k*x^k/(1 - x^k)^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*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: A295141 A074352 A301555 * A017928 A102880 A137104
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 23 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)