The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A132057 A convolution triangle of numbers obtained from A034904. 4

%I #10 Aug 29 2019 16:30:00

%S 1,28,1,980,56,1,37730,2744,84,1,1531838,130340,5292,112,1,64337196,

%T 6136956,299782,8624,140,1,2766499428,288408120,16120314,568008,12740,

%U 168,1,121034349975,13561837212,841627332,34401528,956970,17640,196,1

%N A convolution triangle of numbers obtained from A034904.

%C a(n,1) = A034904(n). a(n,m)=: s2(8; n,m), a member of a sequence of unsigned triangles including s2(2; n,m)=A007318(n-1,m-1) (Pascal's triangle). s2(3;n,m)= A035324(n,m), s2(4; n,m)= A035529(n,m), s2(5; n,m)= A048882(n,m), s2(6; n,m)= A049375; s2(7; n,m)=A092083.

%H 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.

%H W. Lang, <a href="/A132057/a132057.txt">First 10 rows</a>.

%F a(n, m) = 7*(7*(n-1)+m)*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.

%F G.f. for m-th column: ((-1+(1-49*x)^(-1/7))/7)^m.

%e {1}; {28,1}; {980,56,1}; (37730,2744,84,1);...

%t a[n_, m_] := a[n, m] = 7*(7*(n-1) + m)*a[n-1, m]/n + m*a[n-1, m-1]/n;

%t a[n_, m_] /; n < m = 0; a[_, 0] = 0; a[1, 1] = 1;

%t Flatten[Table[a[n, m], {n, 1, 8}, {m, 1, n}]][[1 ;; 36]]

%t (* _Jean-François Alcover_, Jun 17 2011 *)

%Y Cf. A132058 (row sums), A132059 (negative of alternating row sums).

%K nonn,easy,tabl

%O 1,2

%A _Wolfdieter Lang_ Sep 14 2007

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 June 11 14:45 EDT 2024. Contains 373311 sequences. (Running on oeis4.)