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!)
A231171 G.f.: A(x,y) = Sum_{n>=0} x^n * Product_{k=1..n} (k + x*y) / (1 + k*x*y), as a triangle read by rows. 2
1, 1, 2, 6, -3, 24, -25, 6, 120, -190, 90, -12, 720, -1526, 1095, -300, 24, 5040, -13356, 12915, -5490, 960, -48, 40320, -128052, 156100, -90930, 25500, -3000, 96, 362880, -1341936, 1975708, -1469265, 576660, -113040, 9240, -192, 3628800, -15303024, 26413100, -23958711, 12184620, -3423000, 486120, -28200, 384 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare to the identity:
Sum_{n>=0} x^n * Product_{k=1..n} (t*k + x)/(1 + t*k*x) = 1/(1 - t*x - x^2).
LINKS
FORMULA
Row sums yield the Fibonacci sequence (A000045).
Sum_{k=0..n} T(n,k)(-1)^k = A231172(n) for n>=0.
Sum_{k=0..n} T(n,k)(-2)^k = A231173(n) for n>=0.
EXAMPLE
G.f.: A(x,y) = 1 + x*(1) + x^2*(2) + x^3*(6 - 3*y) +
x^4*(24 - 25*y + 6*y^2) +
x^5*(120 - 190*y + 90*y^2 - 12*y^3) +
x^6*(720 - 1526*y + 1095*y^2 - 300*y^3 + 24*y^4) +
x^7*(5040 - 13356*y + 12915*y^2 - 5490*y^3 + 960*y^4 - 48*y^5) +
x^8*(40320 - 128052*y + 156100*y^2 - 90930*y^3 + 25500*y^4 - 3000*y^5 + 96*y^6) + ...
Triangle begins:
1;
1;
2;
6, -3;
24, -25, 6;
120, -190, 90, -12;
720, -1526, 1095, -300, 24;
5040, -13356, 12915, -5490, 960, -48;
40320, -128052, 156100, -90930, 25500, -3000, 96;
362880, -1341936, 1975708, -1469265, 576660, -113040, 9240, -192;
3628800, -15303024, 26413100, -23958711, 12184620, -3423000, 486120, -28200, 384; ...
where the g.f. of the n-th diagonal as a power series in z is given by:
Product_{k=1..n} (k + z) / (1 + k*z), for n>=0.
PROG
(PARI) {T(n, k)=polcoeff(polcoeff(sum(m=0, n, x^m*prod(k=1, m, (k+x*y)/(1+k*x*y +x*O(x^n)))), n, x), k, y)}
for(n=0, 10, for(k=0, min(n, min(abs(n-1), abs(n-2))), print1(T(n, k), ", ")); print(""))
CROSSREFS
Sequence in context: A302783 A364318 A008306 * A331431 A248120 A144362
KEYWORD
tabf,sign
AUTHOR
Paul D. Hanna, Nov 05 2013
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 April 19 15:11 EDT 2024. Contains 371794 sequences. (Running on oeis4.)