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!)
A008291 Triangle of rencontres numbers. 26

%I #47 Aug 23 2021 07:37:40

%S 1,2,3,9,8,6,44,45,20,10,265,264,135,40,15,1854,1855,924,315,70,21,

%T 14833,14832,7420,2464,630,112,28,133496,133497,66744,22260,5544,1134,

%U 168,36,1334961,1334960,667485,222480,55650,11088,1890,240,45,14684570

%N Triangle of rencontres numbers.

%C T(n,k) = number of permutations of n elements with k fixed points.

%C T(n,n-1)=0 and T(n,n)=1 are omitted from the array. - _Geoffrey Critzer_, Nov 28 2011.

%D R. L. Graham, D. E. Knuth and O. Patashnik, Concrete Mathematics. Addison-Wesley, Reading, MA, 1990, p. 194.

%D Kaufmann, Arnold. "Introduction a la combinatorique en vue des applications." Dunod, Paris, 1968. See p. 92.

%D J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, p. 65.

%H T. D. Noe, <a href="/A008291/b008291.txt">Rows n=2..50, flattened</a>

%H FindStat - Combinatorial Statistic Finder, <a href="http://www.findstat.org/St000022">The number of fixed points of a permutation</a>

%H I. Kaplansky, <a href="http://dx.doi.org/10.1090/S0002-9904-1944-08261-X">Symbolic solution of certain problems in permutations</a>, Bull. Amer. Math. Soc., 50 (1944), 906-914.

%F T(n,k) = binomial(n,k)*A000166(n-k) = A008290(n,k).

%F E.g.f. for column k: (x^k/k!)(exp(-x)/(1-x)). - _Geoffrey Critzer_, Nov 28 2011

%F Row generating polynomials appear to be given by -1 + sum {k = 0..n} (-1)^(n+k)*C(n,k)*(1+k*x)^(n-k)*(2+(k-1)*x)^k. - _Peter Bala_, Dec 29 2011

%e Triangle begins:

%e 1

%e 2 3

%e 9 8 6

%e 44 45 20 10

%e 265 264 135 40 15

%e 1854 1855 924 315 70 21

%e 14833 14832 7420 2464 630 112 28

%e 133496 133497 66744 22260 5544 1134 168 36

%e ...

%p T:= proc(n, k) T(n, k):= `if`(k=0, `if`(n<2, 1-n, (n-1)*

%p (T(n-1, 0)+T(n-2, 0))), binomial(n, k)*T(n-k, 0))

%p end:

%p seq(seq(T(n, k), k=0..n-2), n=2..12); # _Alois P. Heinz_, Mar 17 2013

%t Prepend[Flatten[f[list_]:=Select[list,#>1&];Map[f,Drop[Transpose[Table[d = Exp[-x]/(1 - x);Range[0, 10]! CoefficientList[Series[d x^k/k!, {x, 0, 10}],x], {k, 0, 8}]], 3]]], 1] (* _Geoffrey Critzer_, Nov 28 2011 *)

%o (PARI) T(n, k)= if(k<0 || k>n, 0, n!/k!*sum(i=0, n-k, (-1)^i/i!))

%Y Cf. A008290, A170942.

%Y Diagonals give A000217, A007290, A060008, A060836, A000166, A000240, A000387, A000449, A000475.

%Y Row sums give A033312.

%Y Cf. A320582.

%K nonn,tabl,nice,easy

%O 2,2

%A _N. J. A. Sloane_

%E Comments and more terms from _Michael Somos_, Apr 26 2000

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 May 6 17:20 EDT 2024. Contains 372297 sequences. (Running on oeis4.)