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!)
A263396 Expansion of Product_{k>=1} 1/(1 - x^(2*k+7))^k. 5
1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 1, 6, 2, 7, 6, 8, 10, 9, 19, 11, 28, 13, 44, 18, 60, 27, 85, 42, 111, 67, 148, 109, 188, 169, 245, 260, 313, 390, 408, 568, 535, 811, 717, 1139, 974, 1568, 1343, 2134, 1872, 2873, 2621, 3832, 3687, 5088 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,12
LINKS
FORMULA
G.f.: exp(Sum_{k>=1} x^(9*k)/(k*(1-x^(2*k))^2).
a(n) ~ 8 * 2^(1/72) * exp(-1/24 - 49*Pi^4/(1728*Zeta(3)) - 7*Pi^2 * n^(1/3) / (12 * 2^(2/3) * Zeta(3)^(1/3)) + 3 * Zeta(3)^(1/3) * n^(2/3) / 2^(4/3)) * sqrt(A) * n^(97/72) / (45*sqrt(3*Pi) * Zeta(3)^(133/72)), where Zeta(3) = A002117 and A = A074962 is the Glaisher-Kinkelin constant.
MAPLE
with(numtheory):
a:= proc(n) option remember; local r; `if`(n=0, 1,
add(add(`if`(irem(d-6, 2, 'r')=1, d*r, 0)
, d=divisors(j))*a(n-j), j=1..n)/n)
end:
seq(a(n), n=0..65); # Alois P. Heinz, Oct 17 2015
MATHEMATICA
nmax = 60; CoefficientList[Series[Product[1/(1 - x^(2*k+7))^k, {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 60; CoefficientList[Series[E^Sum[x^(9*k)/(k*(1-x^(2*k))^2), {k, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A349375 A008722 A008736 * A029180 A008802 A008809
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 16 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 May 9 12:21 EDT 2024. Contains 372350 sequences. (Running on oeis4.)