cp's OEIS Frontend

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.

A090683 Triangle read by rows, defined by T(n,k) = C(n,k)*S2(n,k), 0 <= k <= n, where C(n,k) are the binomial coefficients and S2(n,k) are the Stirling numbers of the second kind.

This page as a plain text file.
%I A090683 #31 Dec 28 2022 02:23:06
%S A090683 1,0,1,0,2,1,0,3,9,1,0,4,42,24,1,0,5,150,250,50,1,0,6,465,1800,975,90,
%T A090683 1,0,7,1323,10535,12250,2940,147,1,0,8,3556,54096,119070,58800,7448,
%U A090683 224,1,0,9,9180,254100,979020,875826,222264,16632,324,1,0,10,22995,1119600,7162050,10716300,4793670,705600,33750,450,1
%N A090683 Triangle read by rows, defined by T(n,k) = C(n,k)*S2(n,k), 0 <= k <= n, where C(n,k) are the binomial coefficients and S2(n,k) are the Stirling numbers of the second kind.
%C A090683 T(n,k) is the number of Green's H-classes contained in the D-class of rank k in the full transformation semigroup on [n]. - _Geoffrey Critzer_, Dec 27 2022
%D A090683 O. Ganyushkin and V. Mazorchuk, Classical Finite Transformation Semigroups, Springer, 2009, pages 58-62.
%H A090683 Vincenzo Librandi, <a href="/A090683/b090683.txt">Table of n, a(n) for n = 0..230</a>
%H A090683 Wikipedia, <a href="http://en.wikipedia.org/wiki/Green&#39;s_relations">Green's relations</a>
%H A090683 Wikipedia, <a href="http://en.wikipedia.org/wiki/Transformation_semigroup">Transformation semigroup</a>
%F A090683 T(n, k) = binomial(n,k)*Stirling2(n,k).
%F A090683 T(n, k) = A007318(n, k)*A048993(n, k).
%F A090683 T(n, k) = A090657(n, k)/k!.
%e A090683 Triangle begins:
%e A090683   1;
%e A090683   0,  1;
%e A090683   0,  2,  1;
%e A090683   0,  3,  9,  1;
%e A090683   0,  4, 42, 24,  1;
%e A090683   ...
%t A090683 Flatten[Table[Table[Binomial[n, k] StirlingS2[n, k], {k, 0, n}], {n, 0, 10}], 1]
%o A090683 (Maxima) create_list(binomial(n,k)*stirling2(n,k),n,0,12,k,0,n); /* _Emanuele Munarini_, Mar 11 2011 */
%Y A090683 Cf. A007318, A048993, A090657.
%Y A090683 Row sum sequence is A122455.
%K A090683 easy,nonn,tabl
%O A090683 0,5
%A A090683 _Philippe Deléham_, Dec 18 2003
%E A090683 Edited by _Olivier Gérard_, Oct 23 2012