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!)
A261764 Triangle read by rows: T(n,k) is the number of nilpotent subpermutations on an n-set, each of nilpotency index less than or equal to k. 6

%I #35 Sep 29 2017 11:50:57

%S 1,0,1,0,1,3,0,1,7,13,0,1,25,49,73,0,1,81,261,381,501,0,1,331,1531,

%T 2611,3331,4051,0,1,1303,9073,19993,27553,32593,37633,0,1,5937,63393,

%U 165873,253233,313713,354033,394353,0,1,26785,465769,1436473,2540233,3326473,3870793,4233673,4596553

%N Triangle read by rows: T(n,k) is the number of nilpotent subpermutations on an n-set, each of nilpotency index less than or equal to k.

%D A. Laradji and A. Umar, On the number of subpermutations with fixed orbit size, Ars Combinatoria, 109 (2013), 447-460.

%H Alois P. Heinz, <a href="/A261764/b261764.txt">Rows n = 0..140, flattened</a>

%F T(n, k) = T(n-1, k) + 2(n-1)T(n-2, k) + ... + k(n-1) ... (n-k+1)T(n-k, k), with T(n, 1) = 1 and T(n, n+r) = T(n, n) for every nonnegative integer r.

%F T(n,n) = A000262(n).

%F E.g.f. of column k: exp(x + x^2 + ... + x^k).

%F T(n,k) = Sum_{i=0..k} A157400(n,i).

%e T(3,2) = 7 because there are 7 nilpotent subpermutations on {1,2,3}, each of nilpotency index less than or equal to 2, namely: empty map, 1-->2, 1-->3, 2-->1, 2-->3, 3-->1, 3-->2.

%e Triangle starts:

%e 1;

%e 0, 1;

%e 0, 1, 3;

%e 0, 1, 7, 13;

%e 0, 1, 25, 49, 73;

%e 0, 1, 81, 261, 381, 501;

%e 0, 1, 331, 1531, 2611, 3331, 4051;

%e ...

%p egf:= k-> exp(add(x^j, j=1..k)):

%p T:= (n, k)-> n!*coeff(series(egf(k), x, n+1), x, n):

%p seq(seq(T(n, k), k=0..n), n=0..10); # _Alois P. Heinz_, Oct 10 2015

%p # second Maple program:

%p T:= proc(n, k) option remember; `if`(n=0, 1, add(

%p T(n-j, k)*binomial(n-1, j-1)*j!, j=1..min(n,k)))

%p end:

%p seq(seq(T(n, k), k=0..n), n=0..10); # _Alois P. Heinz_, Sep 29 2017

%t Table[n!*SeriesCoefficient[Exp[x*(x^k-1)/(x-1)], {x, 0, n}], {n, 0, 10}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, May 18 2016 *)

%Y Cf. A000262, A157400, A261762, A261763, A261765, A261766, A261767.

%K nonn,tabl

%O 0,6

%A _Samira Stitou_, Sep 21 2015

%E More terms from _Alois P. Heinz_, Oct 10 2015

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 19 05:02 EDT 2024. Contains 371782 sequences. (Running on oeis4.)