login
O.g.f.: Sum_{n>=0} (n^4*x)^n/(1-n^4*x)^n * exp(-n^4*x/(1-n^4*x)) / n!.
2

%I #3 Mar 08 2013 21:09:46

%S 1,1,128,90621,193322261,933620289929,8632521193856886,

%T 136885314823146617517,3443427946573913689696192,

%U 129667338445150206244162849650,6988095504452769015520539806767120,520011535068804196524689647521015780176

%N O.g.f.: Sum_{n>=0} (n^4*x)^n/(1-n^4*x)^n * exp(-n^4*x/(1-n^4*x)) / n!.

%F a(n) = Sum_{k=1..n} C(n-1,k-1) * S2(4*n,k) for n>0 with a(0)=1.

%e O.g.f.: A(x) = 1 + x + 128*x^2 + 90621*x^3 + 193322261*x^4 +...

%e where

%e A(x) = 1 + x/(1-x)*exp(-x/(1-x)) + 2^8*x^2/(1-2^4*x)^2*exp(-2^4*x/(1-2^4*x))/2! + 3^12*x^3/(1-3^4*x)^3*exp(-3^4*x/(1-3^4*x))/3! + 4^16*x^4/(1-4^4*x)^4*exp(-4^4*x/(1-4^4*x))/4! +...

%e simplifies to a power series in x with integer coefficients.

%o (PARI) {a(n)=polcoeff(sum(k=0, n+1, (k^4*x)^k/(1-k^4*x)^k*exp(-k^4*x/(1-k^4*x+x*O(x^n)))/k!), n)}

%o for(n=0, 20, print1(a(n), ", "))

%o (PARI) {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}

%o {a(n)=if(n==0, 1, sum(k=1, n, binomial(n-1, k-1) * Stirling2(4*n, k)))}

%o for(n=0, 20, print1(a(n), ", "))

%Y Cf. A134055, A174845, A222053, A217913, A008277.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Mar 08 2013