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 A030526 #10 Mar 12 2017 14:09:04 %S A030526 1,10,1,80,20,1,560,260,30,1,3584,2720,540,40,1,21504,24768,7480,920, %T A030526 50,1,122880,204288,87552,15840,1400,60,1,675840,1562880,908352, %U A030526 225936,28800,1980,70,1,3604480,11264000,8595200,2813696,483920,47360,2660,80 %N A030526 A convolution triangle of numbers obtained from A036070. %C A030526 a(n,m) := s1p(5; n,m), a member of a sequence of unsigned triangles including s1p(2; n,m)= A007318(n-1,m-1) (Pascal's triangle). Signed version: (-1)^(n-m)*a(n,m) := s1(5; n,m). %H A030526 W. Lang, <a href="http://www.cs.uwaterloo.ca/journals/JIS/index.html">On generalizations of Stirling number triangles</a>, J. Integer Seqs., Vol. 3 (2000), #00.2.4. %F A030526 a(n, m) = 4*(4*m+n-1)*a(n-1, m)/n + m*a(n-1, m-1)/n, n >= m >= 1; a(n, m) := 0, n<m; a(n, 0) := 0; a(1, 1)=1. G.f. for m-th column: (x*(1-6*x+16*x^2-16*x^3)/(1-4*x)^4)^m. %e A030526 1; %e A030526 10,1; %e A030526 80,20,1; %e A030526 560,260,30,1; %e A030526 3584,2720,540,40,1; %e A030526 ... %Y A030526 a(n, 1)= A036070(n-1). Row sums = A045624(n). %K A030526 easy,nonn,tabl %O A030526 1,2 %A A030526 _Wolfdieter Lang_