The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A216973 Exponential Riordan array [x*exp(x),x]. 4

%I #16 Jul 16 2019 03:41:18

%S 0,1,0,2,2,0,3,6,3,0,4,12,12,4,0,5,20,30,20,5,0,6,30,60,60,30,6,0,7,

%T 42,105,140,105,42,7,0,8,56,168,280,280,168,56,8,0,9,72,252,504,630,

%U 504,252,72,9,0,10,90,360,840,1260,1260,840,360,90,10,0

%N Exponential Riordan array [x*exp(x),x].

%C This is the triangle of denominators from Leibniz's harmonic triangle, A003506, augmented with a main diagonal of 0's.

%C Note, the usual definition of the exponential Riordan array [f(x), x*g(x)] associated with a pair of power series f(x) and g(x) requires f(0) to be nonzero. Here we don't make this assumption. - _Peter Bala_, Feb 13 2017

%F T(n,k) = (n-k)*binomial(n,k) for 0 <= k <= n.

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

%F The exponential Riordan array [x*exp(x),x] factors as [x,x]*[exp(x),x] = A132440*A007318.

%F This array is the infinitesimal generator for A116071; that is, Exp(A216973) = A116071, where Exp denotes the matrix exponential. A signed version of the array is the infinitesimal generator for A215652.

%F The first column of the array Exp(t*A216973) is the sequence of idempotent polynomials, the row polynomials of A059297.

%e Triangle begins

%e .n\k.|..0.....1.....2.....3.....4.....5.....6

%e = = = = = = = = = = = = = = = = = = = = = = =

%e ..0..|..0

%e ..1..|..1.....0

%e ..2..|..2.....2.....0

%e ..3..|..3.....6.....3.....0

%e ..4..|..4....12....12.....4.....0

%e ..5..|..5....20....30....20.....5.....0

%e ..6..|..6....30....60....60....30.....6.....0

%e ...

%p A216973_row := proc(n) x*exp(x)*exp(x*t): series(%,x,n+1): n!*coeff(%,x,n):

%p seq(coeff(%,t,k), k=0..n) end:

%p for n from 0 to 10 do A216973_row(n) od; # _Peter Luschny_, Feb 03 2017

%t (* The function RiordanArray is defined in A256893. *)

%t RiordanArray[# Exp[#]&, Identity, 11, True] // Flatten (* _Jean-François Alcover_, Jul 16 2019 *)

%Y A003506, A007318, A059297, A116071, A132440, A215652.

%K nonn,easy,tabl

%O 0,4

%A _Peter Bala_, Sep 21 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 June 9 13:54 EDT 2024. Contains 373240 sequences. (Running on oeis4.)