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!)
A208956 Triangular array read by rows. T(n,k) is the number of n-permutations that have at least k fixed points with n >= 1 and 1 <= k <= n. 2

%I #18 Dec 14 2021 18:48:53

%S 1,1,1,4,1,1,15,7,1,1,76,31,11,1,1,455,191,56,16,1,1,3186,1331,407,92,

%T 22,1,1,25487,10655,3235,771,141,29,1,1,229384,95887,29143,6883,1339,

%U 205,37,1,1,2293839,958879,291394,68914,13264,2176,286,46,1,1

%N Triangular array read by rows. T(n,k) is the number of n-permutations that have at least k fixed points with n >= 1 and 1 <= k <= n.

%C Row sums = n!

%H Alois P. Heinz, <a href="/A208956/b208956.txt">Rows n = 1..141, flattened</a>

%F E.g.f. for column k: 1/(1-x) - D(x)*Sum_{i=0..k-1} x^i/i! where D(x) is the e.g.f. for A000166.

%F T(n,k) = Sum_{i=k..n} C(n,i)*A000166(n-i). - _Alois P. Heinz_, Apr 22 2013

%e Triangle begins:

%e 1;

%e 1, 1;

%e 4, 1, 1;

%e 15, 7, 1, 1;

%e 76, 31, 11, 1, 1;

%e 455, 191, 56, 16, 1, 1;

%e 3186, 1331, 407, 92, 22, 1, 1;

%e ...

%p b:= proc(n) b(n):= `if`(n<2, 1-n, (n-1)*(b(n-1)+b(n-2))) end:

%p T:= (n, k)-> add(binomial(n, i)*b(n-i), i=k..n):

%p seq(seq(T(n,k), k=1..n), n=1..12); # _Alois P. Heinz_, Apr 22 2013

%t f[list_] := Select[list,#>0&]; Map[f,Transpose[Table[nn=10; d=Exp[-x]/(1-x); p=1/(1-x); s=Sum[x^i/i!,{i,0,n}]; Drop[Range[0,nn]! CoefficientList[Series[p-s d, {x,0,nn}], x], 1], {n,0,9}]]]//Flatten

%Y Cf. A002467 (column 1), A155521 (column 2).

%K nonn,tabl

%O 1,4

%A _Geoffrey Critzer_, Mar 03 2012

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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)