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!)
A106436 Difference array of Bell numbers A000110 read by antidiagonals. 14

%I #31 May 26 2019 10:11:13

%S 1,0,1,1,1,2,1,2,3,5,4,5,7,10,15,11,15,20,27,37,52,41,52,67,87,114,

%T 151,203,162,203,255,322,409,523,674,877,715,877,1080,1335,1657,2066,

%U 2589,3263,4140,3425,4140,5017,6097,7432,9089,11155,13744,17007,21147

%N Difference array of Bell numbers A000110 read by antidiagonals.

%C Essentially Aitken's array A011971 with first column A000296.

%C Mirror image of A182930. - _Alois P. Heinz_, Jan 29 2019

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

%H Jocelyn Quaintance and Harris Kwong, <a href="http://www.emis.de/journals/INTEGERS/papers/n29/n29.Abstract.html">A combinatorial interpretation of the Catalan and Bell number difference tables</a>, Integers, 13 (2013), #A29.

%F Double-exponential generating function: sum_{n, k} a(n-k, k) x^n/n! y^k/k! = exp(exp{x+y}-1-x). a(n,k) = Sum_{i=k..n} (-1)^(n-i)*binomial(n-k,i-k)*Bell(i). - _Vladeta Jovovic_, Oct 14 2006

%e 1;

%e 0, 1;

%e 1, 1, 2;

%e 1, 2, 3, 5;

%e 4, 5, 7, 10, 15;

%e 11, 15, 20, 27, 37, 52;

%e ...

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

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

%p end:

%p T:= proc(n, k) option remember; `if`(k=0, b(n),

%p T(n+1, k-1)-T(n, k-1))

%p end:

%p seq(seq(T(n, d-n), n=0..d), d=0..12); # _Alois P. Heinz_, Jan 29 2019

%t bb = Array[BellB, m = 12, 0];

%t dd[n_] := Differences[bb, n];

%t A = Array[dd, m, 0];

%t Table[A[[n-k+1, k+1]], {n, 0, m-1}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, May 26 2019 *)

%Y Cf. A000110, A182930.

%Y Diagonals give A005493, A011965-A011967, A191099, A000298, A011968-A011970.

%Y T(2n,n) gives A020556.

%K nonn,easy,tabl

%O 0,6

%A _Philippe Deléham_, May 29 2005

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