The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A218667 O.g.f.: Sum_{n>=0} 1/(1-n*x)^n * x^n/n! * exp(-x/(1-n*x)). 16
1, 0, 1, 1, 4, 13, 46, 181, 778, 3585, 17566, 91171, 499324, 2873839, 17317743, 108933098, 713481122, 4855161425, 34257461754, 250177938679, 1887886966690, 14699340919293, 117933068390123, 973776266303732, 8265721830953558, 72052688932613079, 644393453082317301 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Compare g.f. to the curious identity:
1/(1+x^2) = Sum_{n>=0} (1-n*x)^n * x^n/n! * exp(-x*(1-n*x)).
LINKS
FORMULA
a(n) = Sum_{k=1..n} Stirling2(n-k, k) * C(n-1, k-1) for n>0 with a(0)=1. - Paul D. Hanna, Jul 30 2014
Antidiagonal sums of Triangle A245111.
EXAMPLE
O.g.f.: A(x) = 1 + x^2 + x^3 + 4*x^4 + 13*x^5 + 46*x^6 + 181*x^7 +...
where
A(x) = exp(-x) + x/(1-x)*exp(-x/(1-x)) + x^2/(1-2*x)^2/2!*exp(-x/(1-2*x)) + x^3/(1-3*x)^3/3!*exp(-x/(1-3*x)) + x^4/(1-4*x)^4/4!*exp(-x/(1-4*x)) + x^5/(1-5*x)^5/5!*exp(-x/(1-5*x)) + x^6/(1-6*x)^6/6!*exp(-x/(1-6*x)) +...
simplifies to a power series in x with integer coefficients.
PROG
(PARI) {a(n)=local(A=1+x, X=x+x*O(x^n)); A=sum(k=0, n, 1/(1-k*X)^k*x^k/k!*exp(-X/(1-k*X))); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) /* From a(n) = Sum_{k=1..n} Stirling2(n-k, k) * C(-1, k-1) */
{Stirling2(n, k) = sum(j=0, k, (-1)^(k+j) * binomial(k, j) * j^n) / k!}
{a(n)=if(n==0, 1, sum(k=1, n, Stirling2(n-k, k) * binomial(n-1, k-1)))}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A149437 A149438 A151448 * A149439 A014145 A354550
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 04 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 17:50 EDT 2024. Contains 372533 sequences. (Running on oeis4.)