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!)
A064898 Stirling transform of derangements numbers. 2

%I #28 Feb 16 2023 15:14:17

%S 1,0,1,5,28,199,1721,17394,200803,2607301,37614922,596933193,

%T 10334308029,193820343248,3914731286181,84716451763961,

%U 1955520075368116,47960724925499219,1245468599978831333,34139796082603477690,985066290112167474255,29844155285575945561913

%N Stirling transform of derangements numbers.

%H Alois P. Heinz, <a href="/A064898/b064898.txt">Table of n, a(n) for n = 0..424</a>

%H H. Belbachir, Y. Djemmada and L. Németh, <a href="https://arxiv.org/abs/2102.00139">The deranged Bell numbers</a>, arXiv:2102.00139 [math.GM], 2021.

%F a(n) = Sum_{k=0..n} Stirling2(n,k)*A000166(k).

%F E.g.f.: exp(-(exp(x)-1))/(2-exp(x)).

%F a(n) ~ n!/(2*exp(1)*log(2)^(n+1)). - _Vaclav Kotesovec_, Jun 29 2013

%p g:= proc(n) option remember;

%p `if`(n<2, 1-n, (n-1)*(g(n-1)+g(n-2)))

%p end:

%p b:= proc(n, m) option remember;

%p `if`(n=0, g(m), m*b(n-1, m)+b(n-1, m+1))

%p end:

%p a:= n-> b(n, 0):

%p seq(a(n), n=0..27); # _Alois P. Heinz_, Feb 16 2023

%t A000166[n_] := Round[ n!/Exp[1] ]; A000166[0] = 1; A000166[1] = 0; a[n_] := Sum[ StirlingS2[n, k]*A000166[k], {k, 0, n}]; Table[ a[n], {n, 0, 18}] (* _Jean-François Alcover_, Dec 21 2011, after given formula *)

%Y Cf. A000166.

%K nice,nonn

%O 0,4

%A _Karol A. Penson_, Oct 12 2001

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 April 16 05:35 EDT 2024. Contains 371697 sequences. (Running on oeis4.)