This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A144090 #22 Apr 27 2016 16:29:38 %S A144090 1,2,0,3,6,3,4,24,36,8,5,60,210,220,45,6,120,780,1920,1590,264,7,210, %T A144090 2205,9940,19005,12978,1855,8,336,5208,37520,130200,203952,118664, %U A144090 14832,9,504,10836,114408,630630,1783656,2369556,1201464,133497 %N A144090 Triangle read by rows: T(n,k) is the number of partial bijections (or subpermutations) of an n-element set of height k (height(alpha) = |Im(alpha)|) and with exactly 1 fixed point. %H A144090 A. Laradji and A. Umar, <a href="http://dx.doi.org/10.1007/s00233-007-0732-8">Combinatorial results for the symmetric inverse semigroup</a>, Semigroup Forum 75, (2007), 221-236. %F A144090 T(n,k) = (n!/(n-k)!)*Sum_{m=0..k-1} ((-1)^m/m!)*C(n-1-m,k-1-m). %e A144090 T(3,2) = 6 because there are exactly 6 partial bijections (on a 3-element set) with exactly 1 fixed point and of height 2, namely: (1,2)->(1,3), (1,2)->(3,2), (1,3)->(1,2), (1,3)->(2,3), (2,3)->(2,1), (2,3)->(1,3)- the mappings are coordinate-wise. %e A144090 First six rows: %e A144090 1 %e A144090 2 0 %e A144090 3 6 3 %e A144090 4 24 36 8 %e A144090 5 60 210 220 45 %e A144090 6 120 780 1920 1590 264 %t A144090 Table[(n!/(n - k)!) Sum[ ((-1)^m/m!) Binomial[n - 1 - m, k - 1 - m], {m, 0, k - 1}], {n, 9}, {k, n}] // Flatten (* _Michael De Vlieger_, Apr 27 2016 *) %o A144090 (PARI) T(n,k) = (n!/(n-k)!)*sum(m=0,k-1,((-1)^m/m!)*binomial(n-1-m,k-1-m)); %o A144090 for (n=1, 10, for (k=1, n, print1(T(n,k), ", "))) \\ _Michel Marcus_, Apr 27 2016 %Y A144090 Rows sums are A144086. %Y A144090 Main diagonal gives A000240. %K A144090 nonn,tabl %O A144090 1,2 %A A144090 _Abdullahi Umar_, Sep 11 2008