Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A286074
Number of permutations of [n] with nondecreasing cycle sizes.
8
1, 1, 2, 4, 13, 45, 250, 1342, 10085, 76165, 715588, 6786108, 78636601, 896672473, 12112535378, 163963519810, 2534311844905, 39211836764457, 688584972407680, 12003902219337760, 234324625117308533, 4571805253649981173, 98183221386947058286
OFFSET
0,3
COMMENTS
Each cycle is written with the smallest element first and cycles are arranged in increasing order of their first elements.
a(n) mod 2 = A133872(n).
LINKS
Wikipedia, Permutation
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, add(
(j-1)!*b(n-j, j)*binomial(n-1, j-1), j=i..n))
end:
a:= n-> b(n, 1):
seq(a(n), n=0..30);
MATHEMATICA
b[n_, i_] := b[n, i] = If[n == 0, 1, Sum[(j - 1)!*b[n - j, j]*Binomial[n - 1, j - 1], {j, i, n}]];
a[n_] := b[n, 1];
Table[a[n], {n, 0, 30}] (* Jean-François Alcover, May 25 2018, translated from Maple *)
KEYWORD
nonn
AUTHOR
Alois P. Heinz, May 01 2017
STATUS
approved