A294361 E.g.f.: exp(Sum_{n>=1} sigma(n) * x^n).
1, 1, 7, 43, 409, 3841, 50431, 648187, 10347793, 170363809, 3200390551, 62855417131, 1371594161257, 31147757782753, 768384638386639, 19814802390611131, 545309251861956001, 15661899520801953217, 475833949719419469223, 15042718034104688144299
Offset: 0
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..430
- Peter Bala, Integer sequences that become periodic on reduction modulo k for all k
Crossrefs
Programs
-
Mathematica
nmax = 20; CoefficientList[Series[Exp[Sum[DivisorSigma[1, k]*x^k, {k, 1, nmax}]], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Sep 04 2018 *)
-
PARI
N=66; x='x+O('x^N); Vec(serlaplace(exp(sum(k=1, N, sigma(k)*x^k))))
Formula
a(0) = 1 and a(n) = (n-1)! * Sum_{k=1..n} k*A000203(k)*a(n-k)/(n-k)! for n > 0.
E.g.f.: Product_{k>=1} exp(k*x^k/(1 - x^k)). - Ilya Gutkovskiy, Nov 27 2017
a(n) ~ Pi^(1/3) * exp((3*Pi)^(2/3) * n^(2/3)/2 - 3^(1/3) * n^(1/3) / (2*Pi^(2/3)) + 1/24 - 1/(8*Pi^2) - n) * n^(n - 1/6) / 3^(2/3). - Vaclav Kotesovec, Sep 04 2018
Comments