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!)
A111578 Triangle T(n, m) = T(n-1, m-1) + (4m-3)*T(n-1, m) read by rows 1<=m<=n. 7

%I #16 May 16 2021 21:59:53

%S 1,1,1,1,6,1,1,31,15,1,1,156,166,28,1,1,781,1650,530,45,1,1,3906,

%T 15631,8540,1295,66,1,1,19531,144585,126651,30555,2681,91,1,1,97656,

%U 1320796,1791048,646086,86856,4956,120,1,1,488281,11984820,24604420,12774510

%N Triangle T(n, m) = T(n-1, m-1) + (4m-3)*T(n-1, m) read by rows 1<=m<=n.

%C From _Peter Bala_, Jan 27 2015: (Start)

%C Working with an offset of 0, this is the exponential Riordan array [exp(z), (exp(4*z) - 1)/4].

%C This is the triangle of connection constants between the polynomial basis sequences {x^n}n>=0 and { n!*4^n * binomial((x - 1)/4,n) }n>=0. An example is given below.

%C Call this array M and let P denote Pascal's triangle A007318 then P^2 * M = A225469; P^(-1) * M is a shifted version of A075499.

%C This triangle is the particular case a = 4, b = 0, c = 1 of the triangle of generalized Stirling numbers of the second kind S(a,b,c) defined in the Bala link. (End)

%H P. Bala, <a href="/A143395/a143395.pdf">A 3 parameter family of generalized Stirling numbers</a>

%F From _Peter Bala_, Jan 27 2015: (Start)

%F The following formulas assume an offset of 0.

%F T(n,k) = 1/(4^k*k!)*sum {j = 0..k} (-1)^(k-j)*binomial(k,j)*(4*j + 1)^n.

%F T(n,k) = sum {i = 0..n-1} 4^(i-k+1)*binomial(n-1,i)*Stirling2(i,k-1).

%F E.g.f.: exp(z)*exp(x/4*(exp(4*z) - 1)) = 1 + (1 + x)*z + (1 + 6*x + x^2)*z^2/2! + ....

%F O.g.f. for n-th diagonal: exp(-x/4)*sum {k >= 0} (4*k + 1)^(k + n - 1)*((x/4*exp(-x))^k)/k!.

%F O.g.f. column k: 1/( (1 - x)*(1 - 5*x)...(1 - (4*k + 1)*x ). (End)

%e The triangle starts in row n=1 as:

%e 1;

%e 1,1;

%e 1,6,1;

%e 1,31,15,1;

%e Connection constants: Row 4: [1, 31, 15, 1] so

%e x^3 = 1 + 31*(x - 1) + 15*(x - 1)*(x - 5) + (x - 1)*(x - 5)*(x - 9). - _Peter Bala_, Jan 27 2015

%t T[n_, k_] := 1/(4^(k-1)*(k-1)!) * Sum[ (-1)^(k-j-1) * (4*j+1)^(n-1) * Binomial[k-1, j], {j, 0, k-1}]; Table[T[n, k], {n, 1, 10}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Jan 28 2015, after _Peter Bala_ *)

%o (Python)

%o def A096038(n,m):

%o if n < 1 or m < 1 or m > n:

%o return 0

%o elif n <=2:

%o return 1

%o else:

%o return A096038(n-1,m-1)+(4*m-3)*A096038(n-1,m)

%o print( [A096038(n,m) for n in range(20) for m in range(1,n+1)] )

%o # _R. J. Mathar_, Oct 11 2009

%Y Cf. A111577, A008277, A039755, A016234 (3rd column).

%K nonn,tabl

%O 1,5

%A _Gary W. Adamson_, Aug 07 2005

%E Edited and extended by _R. J. Mathar_, Oct 11 2009

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 24 19:24 EDT 2024. Contains 371962 sequences. (Running on oeis4.)