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!)
A129652 Exponential Riordan array [e^(x/(1-x)),x]. 8

%I #37 Feb 22 2022 09:12:41

%S 1,1,1,3,2,1,13,9,3,1,73,52,18,4,1,501,365,130,30,5,1,4051,3006,1095,

%T 260,45,6,1,37633,28357,10521,2555,455,63,7,1,394353,301064,113428,

%U 28056,5110,728,84,8,1,4596553,3549177,1354788,340284,63126,9198,1092,108,9,1

%N Exponential Riordan array [e^(x/(1-x)),x].

%C Satisfies the equation e^[x/(1-x),x] = e*[e^(x/(1-x)),x].

%C Row sums are A052844.

%C Antidiagonal sums are A129653.

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

%H T.-X. He, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL11/He/he51.html">A symbolic operator approach to power series transformation-expansion formulas</a>, JIS 11 (2008) 08.2.7.

%F Number triangle T(n,k)=(n!/k!)*sum{i=0..n-k, C(n-k-1,i)/(n-k-i)!}

%F From _Peter Bala_, May 14 2012 : (Start)

%F Array is exp(S*(I-S)^(-1)) where S is A132440 the infinitesimal generator for Pascal's triangle.

%F Column 0 is A000262.

%F T(n,k) = binomial(n,k)*A000262(n-k).

%F So T(n,k) gives the number of ways to choose a subset of {1,2,...,n) of size k and then arrange the remaining n-k elements into a set of lists. (End)

%F T(n,k) = (-1)^(k-n+1)*C(n,k)*KummerU(k-n+1, 2, -1). - _Peter Luschny_, Sep 17 2014

%F From _Tom Copeland_, Mar 11 2016: (Start)

%F The row polynomials P_n(x) form an Appell sequence with e.g.f. e^(t*P.(x)) = e^[t / (1-t)] e^(x*t), so the lowering and raising operators are L = d/dx = D and the R = x + 1 / (1-D)^2 = x + 1 + 2 D + 3 D^2 + ..., satisfying L P_n(x) = n * P_(n-1)(x) and R P_n(x) = P_(n+1)(x).

%F (P.(x) + y)^n = Sum_{k=0..n} binomial(n,k) P_k(x) * y^(n-k) = P_n(x+y).

%F The Appell polynomial umbral compositional inverse sequence has the e.g.f. e^(t*Q.(x)) = e^[-t / (1-t)] e^(x*t) (see A111884 and A133314), so Q_n(P.(x)) = P_n(Q.(x)) = x^n. The lower triangular matrices for the coefficients of these two Appell sequences are a multiplicative inverse pair.

%F (End)

%F Sum_{k=0..n} (-1)^k * T(n,k) = A052845(n). - _Alois P. Heinz_, Feb 21 2022

%e Triangle begins:

%e 1;

%e 1, 1;

%e 3, 2, 1;

%e 13, 9, 3, 1;

%e 73, 52, 18, 4, 1;

%e 501, 365, 130, 30, 5, 1;

%e 4051, 3006, 1095, 260, 45, 6, 1;

%e ...

%p A129652 := (n, k) -> (-1)^(k-n+1)*binomial(n,k)*KummerU(k-n+1, 2, -1);

%p seq(seq(round(evalf(A129652(n,k),99)),k=0..n),n=0..9); # _Peter Luschny_, Sep 17 2014

%p # second Maple program:

%p b:= proc(n) option remember; `if`(n=0, [1$2], add((p-> p+

%p [0, p[1]*x^j])(b(n-j)*binomial(n-1, j-1)*j!), j=1..n))

%p end:

%p T:= n-> (p-> seq(coeff(p, x, i)/i!, i=0..n))(b(n)[2]):

%p seq(T(n), n=0..10); # _Alois P. Heinz_, Feb 21 2022

%t T[n_, k_] := If[k==n, 1, n!/k! Sum[Binomial[n-k-1, j]/(j+1)!, {j, 0, n-k-1}]];

%t Table[T[n, k], {n, 0, 9}, {k, 0, n}] (* _Jean-François Alcover_, Jun 14 2019 *)

%Y Cf. A000262 (column 0), A052844 (row sums).

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

%Y Cf. A052845, A111884, A133314.

%K easy,nonn,tabl

%O 0,4

%A _Paul Barry_, Apr 26 2007

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