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!)
A305868 Product_{n>=1} 1/(1 - x^n)^a(n) = g.f. of A001147 (double factorial of odd numbers). 5
1, 2, 12, 87, 816, 9194, 122028, 1859460, 32002076, 613890984, 12989299596, 300556859080, 7550646317520, 204687481289946, 5955892982437120, 185158929516065160, 6125200081143892800, 214837724609502834082, 7963817560398871790604, 311101285877489780292000, 12773912991134665452205048 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Inverse Euler transform of A001147.
LINKS
N. J. A. Sloane, Transforms
Eric Weisstein's World of Mathematics, Double Factorial
FORMULA
Product_{n>=1} 1/(1 - x^n)^a(n) = 1/(1 - x/(1 - 2*x/(1 - 3*x/(1 - 4*x/(1 - 5*x/(1 - ...)))))).
a(n) ~ 2^(n + 1/2) * n^n / exp(n). - Vaclav Kotesovec, Aug 09 2019
EXAMPLE
1/((1 - x) * (1 - x^2)^2 * (1 - x^3)^12 * (1 - x^4)^87 * (1 - x^5)^816 * ... * (1 - x^n)^a(n) * ...) = 1 + 1*x + 1*3*x^2 + 1*3*5*x^3 + 1*3*5*7*x^4 + ... + A001147(k)*x^k + ...
MATHEMATICA
nn = 21; f[x_] := Product[1/(1 - x^n)^a[n], {n, 1, nn}]; sol = SolveAlways[0 == Series[f[x] - 1/(1 + ContinuedFractionK[-k x, 1, {k, 1, nn}]), {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten
nmax = 20; s = ConstantArray[0, nmax]; Do[s[[j]] = j*(2*j - 1)!! - Sum[s[[d]]*(2*j - 2*d - 1)!!, {d, 1, j - 1}], {j, 1, nmax}]; Table[Sum[MoebiusMu[k/d]*s[[d]], {d, Divisors[k]}]/k, {k, 1, nmax}] (* Vaclav Kotesovec, Aug 09 2019 *)
CROSSREFS
Sequence in context: A290568 A181345 A193125 * A356830 A319324 A059435
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 12 2018
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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)