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!)
A174640 A triangular sequence:t(n,m)=A033306(n,m)-A033306(n,0)+1 0

%I #2 Mar 30 2012 17:34:39

%S 1,1,1,1,1,1,1,2,2,1,1,6,10,6,1,1,24,49,49,24,1,1,110,248,298,248,110,

%T 1,1,545,1308,1749,1749,1308,545,1,1,2877,7229,10421,11611,10421,7229,

%U 2877,1,1,16114,41998,64114,77134,77134,64114,41998,16114,1,1,95496

%N A triangular sequence:t(n,m)=A033306(n,m)-A033306(n,0)+1

%C Row sums are:

%C 1, 2, 3, 6, 24, 148, 1016, 7206, 52667, 398722, 3137084,...

%D This notebook downloaded from http://mathworld.wolfram.com/notebooks/Combinatorics/BellNumber.nb.

%D J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, p. 80.

%F t(n,m)=A033306(n,m)-A033306(n,0)+1

%e {1},

%e {1, 1},

%e {1, 1, 1},

%e {1, 2, 2, 1},

%e {1, 6, 10, 6, 1},

%e {1, 24, 49, 49, 24, 1},

%e {1, 110, 248, 298, 248, 110, 1},

%e {1, 545, 1308, 1749, 1749, 1308, 545, 1},

%e {1, 2877, 7229, 10421, 11611, 10421, 7229, 2877, 1},

%e {1, 16114, 41998, 64114, 77134, 77134, 64114, 41998, 16114, 1},

%e {1, 95496, 256626, 410226, 523476, 565434, 523476, 410226, 256626, 95496, 1}

%t b[0] := 1;

%t b[n_] := b[n] = Total[Table[b[k]Binomial[n - 1, k], {k, 0, n - 1}]];

%t a = b /@ Range[0, 70];

%t t[n_, m_] := Binomial[n, m]*a[[m + 1]]*a[[n - m + 1]];

%t Table[Table[t[n, m] - t[n, 0] + 1, {m, 0, n}], {n, 0, 10}];

%t Flatten[%]

%Y A033306

%K nonn,tabl,uned

%O 0,8

%A _Roger L. Bagula_, Mar 25 2010

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 April 25 12:15 EDT 2024. Contains 371969 sequences. (Running on oeis4.)