cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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

This page as a plain text file.
%I A218684 #7 Dec 25 2012 10:11:55
%S A218684 1,0,1,2,7,18,96,260,1851,5270,46515,137942,1447202,4433772,53787706,
%T A218684 169169912,2326986783,7477418982,114916173009,375898894514,
%U A218684 6380455164161,21185872231238,393499602818322,1323362744628080,26691270481453228,90755667374332324
%N A218684 O.g.f.: Sum_{n>=0} (1+n^2*x)^n * x^n/n! * exp(-(1+n^2*x)*x).
%C A218684 Compare the o.g.f. to the curious identity:
%C A218684 1/(1-x^2) = Sum_{n>=0} (1+n*x)^n * x^n/n! * exp(-(1+n*x)*x).
%e A218684 O.g.f: A(x) = 1 + x^2 + 2*x^3 + 7*x^4 + 18*x^5 + 96*x^6 + 260*x^7 +...
%e A218684 where
%e A218684 A(x) = exp(-x) + (1+x)*x*exp(-(1+x)*x) + (1+2^2*x)^2*x^2/2!*exp(-(1+2^2*x)*x) + (1+3^2*x)^3*x^3/3!*exp(-(1+3^2*x)*x) + (1+4^2*x)^4*x^4/4!*exp(-(1+4^2*x)*x) + (1+5^2*x)^5*x^5/5!*exp(-(1+5^2*x)*x) +...
%e A218684 simplifies to a power series in x with integer coefficients.
%o A218684 (PARI) {a(n)=polcoeff(sum(k=0,n,(1+k^2*x)^k*x^k/k!*exp(-x*(1+k^2*x)+x*O(x^n))),n)}
%o A218684 for(n=0,30,print1(a(n),", "))
%Y A218684 Cf. A218686, A218685, A218687, A185040.
%K A218684 nonn
%O A218684 0,4
%A A218684 _Paul D. Hanna_, Nov 05 2012