OFFSET
0,2
COMMENTS
This is the limiting value of the probability that a random n-permutation will have no cycles of length less than k (for any k) as n goes to infinity. For example, the probability (as n goes to infinity) that a random n-permutation has no fixed points is 1/exp(1). The probability that it has no cycles of length 1 or 2 is 1/exp(1+1/2). The probability that it has no cycles of length 1 or 2 or 3 is 1/exp(1+1/2+1/3!)...
LINKS
P. Flajolet and R. Sedgewick, Analytic Combinatorics, 2009; see page 228.
FORMULA
Equals 1/A234473. - Michel Marcus, Jun 12 2016
EXAMPLE
0.1793740787340171819619895873183164984596816...
MAPLE
Digits:=100: evalf(1/exp(exp(1)-1)); # Wesley Ivan Hurt, Jun 11 2016
MATHEMATICA
RealDigits[1/E^(E - 1), 10, 50][[1]]
PROG
(PARI) 1/exp(exp(1)-1) \\ Michel Marcus, Jun 12 2016
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Geoffrey Critzer, Jun 11 2016
STATUS
approved