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!)
A212431 Triangle read by rows: row sums, right and left borders are the Bell sequence, or a shifted variant. See Comments for precise definition. 2

%I #20 Jun 12 2018 04:23:43

%S 1,1,1,2,1,2,5,3,2,5,15,9,8,5,15,52,31,28,25,15,52,203,121,108,100,90,

%T 52,203,877,523,466,425,405,364,203,877,4140,2469,2202,2000,1875,1820,

%U 1624,877,4140,21147,12611,11250,10230,9525,9100,8932,7893,4140,21147

%N Triangle read by rows: row sums, right and left borders are the Bell sequence, or a shifted variant. See Comments for precise definition.

%C Consider A186020 as an infinite lower triangular matrix, and multiply the columns successively by the Bell numbers A000110, (1, 1, 2, 5, 15, 52,...).

%C Right and left borders = the Bell numbers, A000110: (1, 1, 2, 5, 15,...). Row sums = the shifted Bell numbers, (1, 2, 5, 15, 52,...).

%C Sum of n-th row terms = rightmost and leftmost terms of next row.

%H Alois P. Heinz, <a href="/A212431/b212431.txt">Rows n = 0..140, flattened</a>

%e First few rows of the triangle are:

%e 1;

%e 1, 1

%e 2, 1, 2;

%e 5, 3, 2, 5;

%e 15, 9, 8, 5, 15;

%e 52, 31, 28, 25, 15, 52;

%e 203, 121, 108, 100, 90, 52, 203;

%e 877, 523, 466, 425, 405, 364, 203, 877;

%e 4140, 2469, 2202, 2000, 1875, 1820, 1624, 877, 4140;

%e 21147, 12611, 11250, 10230, 9525, 9100, 8932, 7893, 4140, 21147;

%e ...

%p b:= proc(n) option remember; `if`(n=0, [1, 0],

%p add((p-> p+[0, p[1]*x^(n-j)])(b(n-j)*

%p binomial(n-1, j-1)), j=1..n))

%p end:

%p T:= n-> (p-> seq(`if`(i=n, p[1], coeff(

%p p[2], x, i)), i=0..n))(b(n)):

%p seq(T(n), n=0..12); # _Alois P. Heinz_, May 16 2017

%t b[n_] := b[n] = If[n == 0, {1, 0}, Sum[Function[p, p + {0, p[[1]]*x^(n - j)}][b[n - j]*Binomial[n - 1, j - 1]], {j, 1, n}]];

%t T[n_] := Function[p, Table[If[i == n, p[[1]], Coefficient[p[[2]], x, i]], {i, 0, n}]][b[n]];

%t Table[T[n], {n, 0, 12}] // Flatten (* _Jean-François Alcover_, Jun 12 2018, after _Alois P. Heinz_ *)

%Y Cf. A000110, A186020.

%K nonn,tabl

%O 0,4

%A _Gary W. Adamson_, Jun 21 2012

%E Edited by _N. J. A. Sloane_, Jun 22 2012

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 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)