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!)
A141432 Triangle T(n,k) = (k+1)*(n-k-1) read by rows. 1

%I #16 Apr 01 2021 17:27:06

%S -2,0,-3,2,0,-4,4,3,0,-5,6,6,4,0,-6,8,9,8,5,0,-7,10,12,12,10,6,0,-8,

%T 12,15,16,15,12,7,0,-9,14,18,20,20,18,14,8,0,-10,16,21,24,25,24,21,16,

%U 9,0,-11

%N Triangle T(n,k) = (k+1)*(n-k-1) read by rows.

%H G. C. Greubel, <a href="/A141432/b141432.txt">Rows n = 1..50 of the triangle, flattened</a>

%F T(n,k) = (k+1)*(n-k-1).

%F Sum_{k=1..n} T(n, k) = n*(n^2 - 13)/6.

%F G.f.: Sum_{n>=0} Sum_{k>=0} T(n,k)*x^n*y^k = (2*x-1-y)/((1-y)^3*(x-1)^2). - _R. J. Mathar_, Feb 19 2020

%e Triangle begins as:

%e -2;

%e 0, -3;

%e 2, 0, -4;

%e 4, 3, 0, -5;

%e 6, 6, 4, 0, -6;

%e 8, 9, 8, 5, 0, -7;

%e 10, 12, 12, 10, 6, 0, -8;

%e 12, 15, 16, 15, 12, 7, 0, -9;

%e 14, 18, 20, 20, 18, 14, 8, 0, -10;

%e 16, 21, 24, 25, 24, 21, 16, 9, 0, -11;

%p A141432:= (n,k) -> (k+1)*(n-k-1); seq(seq(A141432(n,k), k=1..n), n=1..12); # _G. C. Greubel_, Apr 01 2021

%t Table[(k+1)*(n-k-1), {n, 12}, {k, n}]//Flatten (* modified by _G. C. Greubel_, Apr 01 2021 *)

%o (Magma) [(k+1)*(n-k-1): k in [1..n], n in [1..12]]; // _G. C. Greubel_, Apr 01 2021

%o (Sage) flatten([[(k+1)*(n-k-1) for k in (1..n)] for n in (1..12)]) # _G. C. Greubel_, Apr 01 2021

%Y Cf. A003991, A004247.

%K tabl,easy,sign

%O 1,1

%A _Roger L. Bagula_ and _Gary W. Adamson_, Aug 06 2008

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 24 19:56 EDT 2024. Contains 371963 sequences. (Running on oeis4.)