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 A049385 #40 Aug 28 2019 15:38:12 %S A049385 1,6,1,66,18,1,1056,372,36,1,22176,9240,1200,60,1,576576,271656,42840, %T A049385 2940,90,1,17873856,9269568,1685376,142800,6090,126,1,643458816, %U A049385 360847872,73313856,7254576,386400,11256,168,1,26381811456,15799069440 %N A049385 Triangle of numbers related to triangle A049375; generalization of Stirling numbers of second kind A008277, Lah-numbers A008297... %C A049385 a(n,m) := S2(6; n,m) is the sixth triangle of numbers in the sequence S2(k; n,m), k=1..6: A008277 (unsigned Stirling 2nd kind), A008297 (unsigned Lah), A035342, A035469, A049029, respectively. a(n,1)= A008548(n). %C A049385 a(n,m) enumerates unordered n-vertex m-forests composed of m plane increasing 6-ary trees. Proof based on the a(n,m) recurrence. See also the F. Bergeron et al. reference, especially Table 1, first row and Example 1 for the e.g.f. for m=1. - _Wolfdieter Lang_, Sep 14 2007 %H A049385 F. Bergeron, Ph. Flajolet and B. Salvy, <a href="http://algo.inria.fr/flajolet/Publications/BeFlSa92.pdf">Varieties of Increasing Trees</a>, Lecture Notes in Computer Science vol. 581, ed. J.-C. Raoult, Springer 1992, pp. 24-48. Added Mar 01 2014. %H A049385 F. Bergeron, Philippe Flajolet and Bruno Salvy, <a href="http://hal.inria.fr/inria-00074977">Varieties of increasing trees</a>, HAL, Rapport De Recherche Inria. Added Mar 01 2014. %H A049385 P. Blasiak, K. A. Penson and A. I. Solomon, <a href="https://arxiv.org/abs/quant-ph/0402027">The general boson normal ordering problem</a>, arXiv:quant-ph/0402027, 2004. %H A049385 M. Janjic, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL12/Janjic/janjic22.html">Some classes of numbers and derivatives</a>, JIS 12 (2009) 09.8.3 %H A049385 W. Lang, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL3/LANG/lang.html">On generalizations of Stirling number triangles</a>, J. Integer Seqs., Vol. 3 (2000), #00.2.4. %H A049385 W. Lang, <a href="/A049385/a049385.txt">First 10 rows</a>. %H A049385 Shi-Mei Ma, <a href="http://arxiv.org/abs/1208.3104">Some combinatorial sequences associated with context-free grammars</a>, arXiv:1208.3104v2 [math.CO]. - From _N. J. A. Sloane_, Aug 21 2012 %H A049385 E. Neuwirth, <a href="http://dx.doi.org/10.1016/S0012-365X(00)00373-3">Recursively defined combinatorial Functions: Extending Galton's board</a>, Discr. Maths. 239 (2001) 33-51. %F A049385 a(n, m) = n!*A049375(n, m)/(m!*5^(n-m)); a(n+1, m) = (5*n+m)*a(n, m)+ a(n, m-1), n >= m >= 1; a(n, m) := 0, n<m; a(n, 0) := 0, a(1, 1)=1; E.g.f. of m-th column: ((-1+(1-5*x)^(-1/5))^m)/m!. %F A049385 a(n, m) = sum(|A051150(n, j)|*S2(j, m), j=m..n) (matrix product), with S2(j, m) := A008277(j, m) (Stirling2 triangle). Priv. comm. to _Wolfdieter Lang_ by E. Neuwirth, Feb 15 2001; see also the 2001 Neuwirth reference. See the general comment on products of Jabotinsky matrices given under A035342. %e A049385 Triangle begins: %e A049385 {1}; %e A049385 {6,1}; %e A049385 {66,18,1}; %e A049385 {1056,372,36,1}; %e A049385 ... %p A049385 # The function BellMatrix is defined in A264428. %p A049385 # Adds (1,0,0,0, ..) as column 0. %p A049385 BellMatrix(n -> mul(5*k+1, k=0..n), 9); # _Peter Luschny_, Jan 28 2016 %t A049385 a[n_, m_] := n!*Coefficient[Series[((-1 + (1 - 5*x)^(-1/5))^m)/m!, {x, 0, n}], x^n]; %t A049385 Flatten[Table[a[n, m], {n, 1, 9}, {m, 1, n}]][[1 ;; 38]] %t A049385 (* _Jean-François Alcover_, Jun 21 2011, after e.g.f. *) %t A049385 rows = 9; %t A049385 t = Table[Product[5k+1, {k, 0, n}], {n, 0, rows}]; %t A049385 T[n_, k_] := BellY[n, k, t]; %t A049385 Table[T[n, k], {n, 1, rows}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Jun 22 2018, after _Peter Luschny_ *) %Y A049385 Cf. A049412. %K A049385 easy,nonn,tabl %O A049385 1,2 %A A049385 _Wolfdieter Lang_