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!)
A137346 Coefficients of a special case of Poisson-Charlier polynomials. Triangle read by rows, T(n, k) for 0 <= k <= n. 5

%I #38 Oct 28 2019 03:38:28

%S 1,-2,1,4,-5,1,-8,20,-9,1,16,-78,59,-14,1,-32,324,-360,135,-20,1,64,

%T -1520,2254,-1165,265,-27,1,-128,8336,-15232,9954,-3045,469,-35,1,256,

%U -53872,113868,-88508,33649,-6888,770,-44,1,-512,405600,-948840,839684,-376278,95025,-14028,1194,-54

%N Coefficients of a special case of Poisson-Charlier polynomials. Triangle read by rows, T(n, k) for 0 <= k <= n.

%H M. Dunster, <a href="https://doi.org/10.1006/jath.2001.3595">Uniform asymptotic expansions for Charlier polynomials</a>, J. Approx. Theory, 112 (2001) pp. 93-133.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Poisson-CharlierPolynomial.html">Poisson-Charlier Polynomial</a>.

%F T(n, k) = n!*[x^k] p(n) where p(n) = [t^n] exp(-2*t)*(1+t)^x.

%F With p(0, x) = 1 and p(1, x) = x - 2 the polynomials obey the recurrence

%F p(n, x) = (x - n - 1)*p(n-1, x) - 2*(n - 1)*p(n-2, x).

%F Row sums are (-2)^n*(n-1) = (-1)^n*A159964(n-1).

%F From _Peter Bala_, Oct 23 2019: (Start)

%F The unsigned row polynomials are

%F R(n,x) = Sum_{k=0..n} (-1)^k*binomial(n, k)*k!*2^(n-k)*binomial(-x, k).

%F They occur in series acceleration formulas for the constant

%F 1/e^2 = n!*2^n*Sum_{k >= 0}(-2)^k/(k!*R(n,k)*R(n,k+1)) = 0.1353 35283 23661 ... (cf. A092553, A046716, A094816).

%F (End)

%F R(n, x) = KummerU(-n, 1 - n - x, 2). - _Peter Luschny_, Oct 27 2019

%e {1},

%e {-2, 1},

%e {4, -5, 1},

%e {-8, 20, -9, 1},

%e {16, -78,59, -14, 1},

%e {-32, 324, -360, 135, -20, 1},

%e {64, -1520, 2254, -1165, 265, -27, 1},

%e {-128, 8336, -15232, 9954, -3045, 469, -35, 1},

%e {256, -53872, 113868, -88508, 33649, -6888, 770, -44, 1},

%e {-512, 405600, -948840, 839684, -376278, 95025, -14028, 1194, -54, 1},

%e {1024, -3492416, 8793216, -8592220,4373060, -1297569, 235473, -26370, 1770, -65, 1}

%p R := proc(n) add((-1)^k*binomial(n,k)* k!*2^(n-k)*binomial(-x, k), k=0..n);

%p expand(%) end: p := n -> seq((-1)^(n-k)*coeff(R(n), x, k), k=0..n):

%p seq(p(n), n = 0..9);

%p # Or:

%p egf := exp(-2*t)*(1+t)^x: ser := series(egf, t, 12): p := n -> coeff(ser, t, n):

%p seq(n!*seq(coeff(p(n), x, k), k=0..n), n=0..9); # _Peter Luschny_, Oct 27 2019

%t Ca[x, 0] = 1; Ca[x, 1] = -2 + x;

%t Ca[x_, n_] := Ca[x, n] = (x - n - 1) Ca[x, n - 1] - 2 (n - 1) Ca[x, n - 2];

%t Table[CoefficientList[Ca[x, n], x], {n, 0, 9}] // Flatten

%t (* The unsigned row polynomials (see _Peter Bala_'s comment) are: *)

%t R[n_] := HypergeometricU[-n, 1 - n - x, 2];

%t Table[R[n], {n, 0, 6}] (* _Peter Luschny_, Oct 27 2019 *)

%Y Cf. A046716, A092553, A094816, A159964.

%K tabl,sign

%O 0,2

%A _Roger L. Bagula_, Apr 08 2008

%E Edited by _Peter Luschny_, Oct 27 2019

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