A255807 E.g.f.: exp(Sum_{k>=1} k^2 * x^k).
1, 1, 9, 79, 841, 10821, 162601, 2777419, 52960209, 1112813641, 25509407401, 632772511911, 16870674740569, 480717000225229, 14568646143888201, 467640968478534691, 15841420612530533281, 564519727866573515409, 21102817266052772063689, 825435163723385398719871
Offset: 0
Links
Programs
-
Mathematica
nmax=20; CoefficientList[Series[Exp[Sum[k^2*x^k,{k,1,nmax}]],{x,0,nmax}],x] * Range[0,nmax]! nn = 20; Range[0, nn]! * CoefficientList[Series[Product[Exp[k^2*x^k], {k, 1, nn}], {x, 0, nn}], x] (* Vaclav Kotesovec, Mar 21 2016 *)
Formula
E.g.f.: exp(x*(1+x)/(1-x)^3).
a(n) ~ 2^(-7/8) * 3^(1/8) * n^(n-1/8) * exp(2^(9/4) * 3^(-3/4) * n^(3/4) - n).
a(n) = n!*y(n) where y(0)=1 and y(n)=(Sum_{k=0..n-1} (n-k)^3*y(k))/n for n>=1. - Benedict W. J. Irwin, Jun 02 2016
a(n) = (4*n-3)*a(n-1) - 2*(n-1)*(3*n-8)*a(n-2) + (n-1)*(n-2)*(4*n-11)*a(n-3) - (n-1)*(n-2)*(n-3)*(n-4)*a(n-4). - Peter Bala, Nov 12 2017
E.g.f.: Product_{k>=1} 1/(1 - x^k)^(J_3(k)/k), where J_3() is the Jordan function (A059376). - Ilya Gutkovskiy, May 25 2019
Comments