OFFSET
0,3
COMMENTS
1/a(n) is probability that a random degree-n permutation has the maximum possible order.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..175
MATHEMATICA
g[n_] := g[n] = Max[LCM @@@ IntegerPartitions[n]];
f[x_, n_] := Total[(MoebiusMu[g[n]/#]*Exp[Total[(x^#/#&) /@ Divisors[#]]]&) /@ Divisors[g[n]]];
a[0] = 1; a[n_] := 1/SeriesCoefficient[f[x, n], {x, 0, n}];
Table[a[n], {n, 0, 50}] (* Jean-François Alcover, May 24 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladeta Jovovic, Sep 15 2002
EXTENSIONS
More terms from Max Alekseyev, Jun 13 2011
STATUS
approved