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.
%I A141433 #23 Apr 01 2021 17:27:19 %S A141433 0,0,4,0,7,12,0,10,18,24,0,13,24,33,40,0,16,30,42,52,60,0,19,36,51,64, %T A141433 75,84,0,22,42,60,76,90,102,112,0,25,48,69,88,105,120,133,144,0,28,54, %U A141433 78,100,120,138,154,168,180 %N A141433 Triangle T(n, k) = (k-1)*(3*n-k), read by rows. %H A141433 G. C. Greubel, <a href="/A141433/b141433.txt">Rows n = 1..50 of the triangle, flattened</a> %F A141433 G.f.: Sum_{k>=0} Sum_{n>=0} T(n,k)*x^n*y^k = y^2*x*(2*x+1-3*y)/((1-y)^3*(x-1)^2). (G.f. for the full array, not just the triangular subspace) - _R. J. Mathar_, Feb 19 2020 %F A141433 Sum_{k=1..n} T(n, k) = A304993(n-1) = (n-1)*n*(7*n -2)/6. - _G. C. Greubel_, Apr 01 2021 %e A141433 Triangle begins as: %e A141433 0; %e A141433 0, 4; %e A141433 0, 7, 12; %e A141433 0, 10, 18, 24; %e A141433 0, 13, 24, 33, 40; %e A141433 0, 16, 30, 42, 52, 60; %e A141433 0, 19, 36, 51, 64, 75, 84; %e A141433 0, 22, 42, 60, 76, 90, 102, 112; %e A141433 0, 25, 48, 69, 88, 105, 120, 133, 144; %e A141433 0, 28, 54, 78, 100, 120, 138, 154, 168, 180; %p A141433 A141433 := proc(n,m) (m-1)*(3*n-m) ; end proc: %p A141433 seq(seq(A141433(n,m),m=1..n),n=1..18) ; # _R. J. Mathar_, Sep 14 2011 %t A141433 Flatten[Table[(m-1)(3n-m),{n,10},{m,n}]] (* _Harvey P. Dale_, Feb 04 2016 *) %o A141433 (Magma) [(k-1)*(3*n-k): k in [1..n], n in [1..12]]; // _G. C. Greubel_, Apr 01 2021 %o A141433 (Sage) flatten([[(k-1)*(3*n-k) for k in (1..n)] for n in (1..12)]) # _G. C. Greubel_, Apr 01 2021 %Y A141433 Cf. A304993 (row sums). %K A141433 nonn,easy,tabl %O A141433 1,3 %A A141433 _Roger L. Bagula_ and _Gary W. Adamson_, Aug 06 2008