OFFSET
0,3
COMMENTS
From Peter Bala, Nov 14 2017: (Start)
It appears that the sequence taken modulo 10 is periodic with period (1, 1, 1, 1, 5) of length 5.
More generally, we conjecture that for k = 2,3,4,... the sequence a(n+k) - a(n) is divisible by k: if true, then for each k the sequence a(n) taken modulo k would be periodic with the exact period dividing k. (End)
From Peter Bala, Mar 28 2022: (Start)
The above conjectures are true. See the Bala link.
a(5*n+4) = 0 (mod 5); a(7*n+3) == 0 (mod 7); a(11*n+2) == 0 (mod 11); a(13*n+3) == 0 (mod 13); a(17*n+4) == 0 (mod 17); a(19*n+12) == 0 (mod 19). (End)
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..417
FORMULA
a(0) = 1 and a(n) = (n-1)! * Sum_{k=1..n} k*A001157(k)*a(n-k)/(n-k)! for n > 0.
E.g.f.: Product_{k>=1} exp(k^2*x^k/(1 - x^k)). - Ilya Gutkovskiy, Nov 27 2017
a(n) ~ (3*Zeta(3))^(1/8) * exp(2^(9/4) * Zeta(3)^(1/4) * n^(3/4) / 3^(3/4) - n^(1/4) / (2^(9/4) * 3^(5/4) * Zeta(3)^(1/4)) - n) * n^(n - 1/8) / 2^(7/8). - Vaclav Kotesovec, Sep 04 2018
MATHEMATICA
nmax = 20; CoefficientList[Series[Exp[Sum[DivisorSigma[2, k]*x^k, {k, 1, nmax}]], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Sep 04 2018 *)
PROG
(PARI) N=66; x='x+O('x^N); Vec(serlaplace(exp(sum(k=1, N, sigma(k, 2)*x^k))))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Oct 29 2017
STATUS
approved