OFFSET
0,2
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..10000
FORMULA
a(n) ~ (13/3)^(1/4) * exp(Pi * sqrt(13*n/3)) / (256 * n^(3/4)). - Vaclav Kotesovec, Mar 05 2015
a(0) = 1, a(n) = (13/n)*Sum_{k=1..n} A000593(k)*a(n-k) for n > 0. - Seiichi Manyama, Apr 03 2017
MATHEMATICA
nmax=50; CoefficientList[Series[Product[(1+q^m)^13, {m, 1, nmax}], {q, 0, nmax}], q] (* Vaclav Kotesovec, Mar 05 2015 *)
PROG
(PARI) m=50; q='q+O('q^m); Vec(prod(n=1, m, (1+q^n)^13)) \\ G. C. Greubel, Feb 25 2018
(Magma) Coefficients(&*[(1+x^m)^13:m in [1..40]])[1..40] where x is PolynomialRing(Integers()).1; // G. C. Greubel, Feb 25 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms added by G. C. Greubel, Feb 25 2018
STATUS
approved