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!)
A075499 Stirling2 triangle with scaled diagonals (powers of 4). 14

%I #24 Mar 26 2020 18:00:08

%S 1,4,1,16,12,1,64,112,24,1,256,960,400,40,1,1024,7936,5760,1040,60,1,

%T 4096,64512,77056,22400,2240,84,1,16384,520192,989184,435456,67200,

%U 4256,112,1,65536,4177920,12390400,7956480,1779456,169344,7392,144,1

%N Stirling2 triangle with scaled diagonals (powers of 4).

%C This is a lower triangular infinite matrix of the Jabotinsky type. See the Knuth reference given in A039692 for exponential convolution arrays.

%C The row polynomials p(n,x) := Sum_{m=1..n} a(n,m)x^m, n >= 1, have e.g.f. J(x; z)= exp((exp(4*z) - 1)*x/4) - 1

%C Also the inverse Bell transform of the quadruple factorial numbers 4^n*n! (A047053) adding 1,0,0,0,... as column 0. For the definition of the Bell transform see A264428 and for cross-references A265604. - _Peter Luschny_, Dec 31 2015

%H Andrew Howroyd, <a href="/A075499/b075499.txt">Table of n, a(n) for n = 1..1275</a>

%F a(n, m) = (4^(n-m)) * stirling2(n, m).

%F a(n, m) = (Sum_{p=0..m-1} A075513(m, p)*((p+1)*4)^(n-m))/(m-1)! for n >= m >= 1, else 0.

%F a(n, m) = 4m*a(n-1, m) + a(n-1, m-1), n >= m >= 1, else 0, with a(n, 0) := 0 and a(1, 1)=1.

%F G.f. for m-th column: (x^m)/Product_{k=1..m}(1-4k*x), m >= 1.

%F E.g.f. for m-th column: (((exp(4x)-1)/4)^m)/m!, m >= 1.

%e [1]; [4,1]; [16,12,1]; ...; p(3,x) = x(16 + 12*x + x^2).

%e From _Andrew Howroyd_, Mar 25 2017: (Start)

%e Triangle starts

%e * 1

%e * 4 1

%e * 16 12 1

%e * 64 112 24 1

%e * 256 960 400 40 1

%e * 1024 7936 5760 1040 60 1

%e * 4096 64512 77056 22400 2240 84 1

%e * 16384 520192 989184 435456 67200 4256 112 1

%e (End)

%t Table[(4^(n - m)) StirlingS2[n, m], {n, 9}, {m, n}] // Flatten (* _Michael De Vlieger_, Dec 31 2015 *)

%o (Sage) # uses[inverse_bell_transform from A265605]

%o # Adds a column 1,0,0,... at the left side of the triangle.

%o multifact_4_4 = lambda n: prod(4*k + 4 for k in (0..n-1))

%o inverse_bell_matrix(multifact_4_4, 9) # _Peter Luschny_, Dec 31 2015

%o (PARI)

%o for(n=1, 11, for(m=1, n, print1(4^(n - m) * stirling(n, m, 2),", ");); print();) \\ _Indranil Ghosh_, Mar 25 2017

%Y Columns 1-7 are A000302, A016152, A019677, A075907-A075910. Row sums are A004213.

%Y Cf. A075498, A075500.

%K nonn,easy,tabl

%O 1,2

%A _Wolfdieter Lang_, Oct 02 2002

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 16 11:08 EDT 2024. Contains 371711 sequences. (Running on oeis4.)