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!)
A355672 Expansion of e.g.f. exp(1/(1-x) - exp(x)). 1

%I #19 Jul 21 2022 06:45:06

%S 1,0,1,5,26,169,1329,12088,124221,1422307,17947550,247318851,

%T 3693469273,59396067080,1022975862713,18781241965081,366070181352802,

%U 7547972562003093,164113696105503057,3752143293971556144,89976991297720804061,2257905394760969948079

%N Expansion of e.g.f. exp(1/(1-x) - exp(x)).

%H Vaclav Kotesovec, <a href="/A355672/b355672.txt">Table of n, a(n) for n = 0..440</a>

%F a(0) = 1; a(n) = Sum_{k=1..n} (k! - 1) * binomial(n-1,k-1) * a(n-k).

%F a(n) ~ exp(1/2 - exp(1) + 2*sqrt(n) - n) * n^(n - 1/4) / sqrt(2). - _Vaclav Kotesovec_, Jul 21 2022

%t nmax = 20; CoefficientList[Series[E^(1/(1-x) - E^x), {x, 0, nmax}], x] * Range[0, nmax]! (* _Vaclav Kotesovec_, Jul 21 2022 *)

%o (PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(1/(1-x)-exp(x))))

%o (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (j!-1)*binomial(i-1, j-1)*v[i-j+1])); v;

%Y Cf. A000262, A000587, A033312, A186755, A352294.

%K nonn

%O 0,4

%A _Seiichi Manyama_, Jul 14 2022

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 17 01:45 EDT 2024. Contains 372572 sequences. (Running on oeis4.)