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!)
A263150 Expansion of Product_{k>=1} 1/(1 - x^(2*k+1))^k. 10
1, 0, 0, 1, 0, 2, 1, 3, 2, 5, 6, 7, 11, 12, 21, 22, 34, 38, 59, 67, 95, 118, 155, 198, 252, 330, 409, 540, 662, 867, 1067, 1382, 1705, 2187, 2705, 3430, 4267, 5348, 6666, 8303, 10352, 12812, 15964, 19681, 24467, 30091, 37282, 45769, 56539, 69296, 85304 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
The side effect of this calculation is a formula: Integral_{x=0..infinity} exp(-3*x)/(x*(1-exp(-2*x))^2) - 1/(4*x^3) + 1/(4*x^2) - exp(-x)/(24*x) = log(2)/6 + log(A)/2 - 1/24, where A = A074962 is the Glaisher-Kinkelin constant.
LINKS
FORMULA
G.f.: exp(Sum_{j>=1} 1/j*x^(3*j)/(1 - x^(2*j))^2).
a(n) ~ sqrt(A) * Zeta(3)^(11/72) * exp(-1/24 - Pi^4/(1728*Zeta(3)) - Pi^2 * n^(1/3) / (3 * 2^(8/3)* Zeta(3)^(1/3)) + 3 * (Zeta(3)/2)^(1/3) * n^(2/3)/2) / (2^(35/72) * sqrt(3*Pi) * n^(47/72)), where Zeta(3) = A002117 and A = A074962 is the Glaisher-Kinkelin constant.
MAPLE
with(numtheory):
a:= proc(n) option remember; `if`(n=0, 1, add(add(d*
`if`(irem(d-1, 2)=0, (d-1)/2, 0),
d=divisors(j))*a(n-j), j=1..n)/n)
end:
seq(a(n), n=0..60); # after Alois P. Heinz, Oct 17 2015
MATHEMATICA
nmax = 100; CoefficientList[Series[Product[1/(1-x^(2*k+1))^k, {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 100; CoefficientList[Series[E^Sum[1/j*x^(3*j)/(1 - x^(2*j))^2, {j, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A079974 A102517 A062951 * A145794 A176741 A266138
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 10 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 July 18 10:00 EDT 2024. Contains 374378 sequences. (Running on oeis4.)