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!)
A257635 Triangle with n-th row polynomial equal to Product_{k = 1..n} (x + n + k). 2
1, 2, 1, 12, 7, 1, 120, 74, 15, 1, 1680, 1066, 251, 26, 1, 30240, 19524, 5000, 635, 40, 1, 665280, 434568, 117454, 16815, 1345, 57, 1, 17297280, 11393808, 3197348, 495544, 45815, 2527, 77, 1, 518918400, 343976400, 99236556, 16275700, 1659889, 107800, 4354, 100, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The row polynomials are a Sheffer sequence. For the associated polynomial sequence of binomial type see A038455.
LINKS
R. Sprugnoli, An Introduction to Mathematical Methods in Combinatorics, Section 5.6 CreateSpace Independent Publishing Platform 2006, ISBN-13: 978-1502925244.
Wikipedia, Sheffer sequence
FORMULA
E.g.f.: A(x,t) = B(t)*C(t)^x = 1 + (2 + x)*t + (3 + x)*(4 + x)*t^2/2! + (4 + x)*(5 + x)*(6 + x)*t^3/3! + ..., where B(t) = 1/sqrt(1 - 4*t) is the o.g.f. for A000984 and C(t) = (1 - sqrt(1 - 4*t))/(2*t) is the o.g.f. for A000108.
n-th row polynomial: n!*binomial(2*n + x,n).
T(n, k) = (-1)^k*n!*[x^k] hypergeom([-n, -x + n], [-n], 1). - Peter Luschny, Nov 27 2021
T(n, k) = [x^k] Gamma(2*n + x + 1) / Gamma(n + x + 1). - Peter Luschny, Mar 21 2022
EXAMPLE
Triangle begins:
[0] 1;
[1] 2, 1;
[2] 12, 7, 1;
[3] 120, 74, 15, 1;
[4] 1680, 1066, 251, 26, 1;
[5] 30240, 19524, 5000, 635, 40, 1;
[6] 665280, 434568, 117454, 16815, 1345, 57, 1;
...
MAPLE
seq(seq(coeff(product(n + x + k, k = 1 .. n), x, i), i = 0..n), n = 0..8);
# Alternative:
p := n -> n!*hypergeom([-n, -x + n], [-n], 1):
seq(seq((-1)^k*coeff(simplify(p(n)), x, k), k=0..n), n=0..6); # Peter Luschny, Nov 27 2021
MATHEMATICA
p[n_, x_] := FunctionExpand[Gamma[2*n + x + 1] / Gamma[n + x + 1]];
Table[CoefficientList[p[n, x], x], {n, 0, 8}] // Flatten (* Peter Luschny, Mar 21 2022 *)
CROSSREFS
Cf. A001813 (column 0), A005449 (first subdiagonal), A098118 (column 1).
Cf. A006963 (row sums), A000407 (alternating row sum).
Sequence in context: A050139 A010255 A372508 * A085752 A074966 A128413
KEYWORD
nonn,tabl,easy
AUTHOR
Peter Bala, Nov 05 2015
STATUS
approved

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 August 10 12:12 EDT 2024. Contains 375056 sequences. (Running on oeis4.)