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!)
A174551 Triangular array T(n,k): functions f:{1,2,...,n}-> {1,2,...,n} such that each of k fixed (but arbitrary) elements are in the image of f. 3

%I #7 Dec 26 2012 20:13:46

%S 1,1,1,4,3,2,27,19,12,6,256,175,110,60,24,3125,2101,1320,750,360,120,

%T 46656,31031,19502,11340,5880,2520,720,823543,543607,341796,201726,

%U 109200,52080,20160,5040,16777216,11012415,6927230,4131036,2298744,1164240,514080,181440,40320

%N Triangular array T(n,k): functions f:{1,2,...,n}-> {1,2,...,n} such that each of k fixed (but arbitrary) elements are in the image of f.

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

%F T(n,k) = Sum_{i=0..k} (-1)^i C(k,i) (n-i)^n; T(n,0) = n^n; T(n,n) = n!.

%e Letting the k arbitrary elements be {1,2}, T(3,2) = 12 because there are 12 such functions from [3] into [3]. {1, 1, 2}, {1, 2, 1}, {1, 2, 2}, {1, 2, 3}, {1, 3, 2}, {2, 1, 1}, {2,1, 2}, {2, 1, 3}, {2, 2, 1}, {2, 3, 1}, {3, 1, 2}, {3, 2, 1}.

%e The triangle begins:

%e 1;

%e 1, 1;

%e 4, 3, 2;

%e 27, 19, 12, 6;

%e 256, 175, 110, 60, 24;

%e 3125, 2101, 1320, 750, 360, 120;

%e 46656, 31031, 19502, 11340, 5880, 2520, 720;

%e 823543, 543607, 341796, 201726, 109200, 52080, 20160, 5040;

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

%p seq(seq(T(n,k), k=0..n), n=0..10); # _Alois P. Heinz_, Dec 26 2012

%t Table[Table[ Sum[(-1)^i Binomial[k, i] (n - i)^n, {i, 0, k}], {k, 0, n}], {n, 0, 7}] // Grid

%Y Columns are: A045531, A126778, A126779, A126780, A126232, A126781

%K nonn,tabl

%O 0,4

%A _Geoffrey Critzer_, Mar 22 2010

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 24 14:54 EDT 2024. Contains 371960 sequences. (Running on oeis4.)