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!)
A263405 Expansion of Product_{k>=1} 1/(1-x^(3*k+1))^k. 6
1, 0, 0, 0, 1, 0, 0, 2, 1, 0, 3, 2, 1, 4, 6, 2, 6, 10, 6, 8, 20, 14, 13, 30, 29, 22, 50, 54, 43, 74, 99, 76, 119, 166, 144, 182, 276, 254, 294, 442, 451, 468, 701, 758, 772, 1088, 1270, 1256, 1698, 2052, 2067, 2618, 3294, 3352, 4065, 5162, 5430, 6284, 8050 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,8
LINKS
FORMULA
G.f.: exp(Sum_{k>=1} x^(4*k)/(k*(1-x^(3*k))^2).
a(n) ~ c * Zeta(3)^(19/108) * exp(-Pi^4/(3888*Zeta(3)) - Pi^2 * n^(1/3) / (2^(4/3) * 3^(7/3) * Zeta(3)^(1/3)) + 3^(1/3) * Zeta(3)^(1/3) * n^(2/3) / 2^(2/3)) / (2^(35/108) * 3^(23/27) * sqrt(Pi) * n^(73/108)), where c = 3^(1/6) * sqrt(2*Pi) * exp(A263031) / Gamma(1/3) = 1.107474840397395849254161220076423560365022...
MAPLE
with(numtheory):
a:= proc(n) option remember; `if`(n=0, 1, add(add(d*
`if`(irem(d-1, 3)=0, (d-1)/3, 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 = 60; CoefficientList[Series[Product[1/(1-x^(3*k+1))^k, {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 60; CoefficientList[Series[E^Sum[x^(4*k)/(k*(1-x^(3*k))^2), {k, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A295508 A260672 A063942 * A106384 A333119 A356582
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 17 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 25 09:17 EDT 2024. Contains 371967 sequences. (Running on oeis4.)