A130476 Row sums of triangle A130461.
1, 2, 3, 5, 8, 15, 28, 61, 132, 325, 790, 2133, 5680, 16501
Offset: 1
Keywords
Examples
a(6) = 15 = (1 + 1 + 2 + 6 + 4 + 1), sum of row 6 terms in triangle A130461.
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
a(6) = 15 = (1 + 1 + 2 + 6 + 4 + 1), sum of row 6 terms in triangle A130461.
First few rows of the triangle A130461 = (1; 1, 1; 1, 1, 1; 1, 1, 2, 1; 1, 1, 2, 3, 1; 1, 1, 2, 6, 4, 1;...). Deleting the left border and taking finite differences at the top of each remaining column, we get the first few rows of this triangle: 1; 1, 1; 1, 2, 3; 1, 3, 8, 12; 1, 4, 15, 40, 60; 1, 5, 24, 90, 240, 360; 1, 6, 35, 168, 630, 1680, 2520; ...
T := (n,k) -> (n-k+1+0^k)*((n+1)!/(n-k+2)!): seq(seq(T(n,k),k=0..n),n=0..10); # Peter Luschny, Sep 17 2018
Flatten[Table[Table[(n - k + 1 + 0^k)*(n + 1)!/(n - k + 2)!, {k,0,n}], {n, 0, 10}], 1] (* Olivier Gérard, Aug 04 2012 *)
{T(n, k) = if( n<1 || k>n, 0, k==1, 1, n! * (n+1-k) / (n+2-k)!)}; /* Michael Somos, Jun 25 2017 */
First few rows of the triangle: 1; 1, 0; 0, 2, 0; 0, 0, 3, 0; 0, 0, 0, 4, 0; 0, 0, 0, 0, 5, 0; ...
Comments