A195584 O.g.f.: exp( Sum_{n>=1} (sigma(2*n^2)-sigma(n^2)) * x^n/n ).
1, 2, 6, 18, 42, 102, 238, 522, 1130, 2394, 4926, 9978, 19890, 38942, 75254, 143598, 270506, 504126, 929926, 1698322, 3074010, 5516898, 9820550, 17349554, 30430610, 53007162, 91734262, 157771538, 269734714, 458542822, 775281982, 1303971722, 2182227546, 3634444634
Offset: 0
Keywords
Examples
G.f.: A(x) = 1 + 2*x + 6*x^2 + 18*x^3 + 42*x^4 + 102*x^5 + 238*x^6 +... where log(A(x)) = 2*x + 8*x^2/2 + 26*x^3/3 + 32*x^4/4 + 62*x^5/5 + 104*x^6/6 +...+ A195585(n)*x^n/n +...
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 0..5000
Programs
-
Mathematica
nmax = 40; CoefficientList[Series[Exp[Sum[(DivisorSigma[1, 2*n^2] - DivisorSigma[1, n^2])*(x^n/n), {n, 1, nmax}]], {x, 0, nmax}], x] (* Vaclav Kotesovec, Nov 28 2015 *)
-
PARI
{a(n)=polcoeff(exp(sum(m=1, n, (sigma(2*m^2)-sigma(m^2))*x^m/m)+x*O(x^n)), n)}
Comments