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!)
A143150 A triangle sequence based on the Folium of Descartes: x^3 + y^3 - 3*a*x*y. 2
-1, 3, 4, 19, 17, 27, 53, 48, 55, 80, 111, 103, 107, 129, 175, 199, 188, 189, 208, 251, 324, 323, 309, 307, 323, 363, 433, 539, 489, 472, 467, 480, 517, 584, 687, 832, 703, 683, 675, 685, 719, 783, 883, 1025, 1215, 971, 948, 937, 944, 975, 1036, 1133, 1272, 1459, 1700 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Row sums are {-1, 7, 63, 236, 625, 1359, 2597, 4528, 7371, 11375, ...}.
REFERENCES
Smamuel M. Shelby, ed., "CRC Standard Mathematical Tables and Formulae", 12th Edition, Curves and Surfaces (page 421),
LINKS
FORMULA
T(n,m) = n^3 + m^3 - 3*n*m.
row sums: Sum_{m=1..n} T(n,m) = n^2*(5*n^2 - 4*n - 5)/4. - R. J. Mathar, Oct 24 2008
EXAMPLE
Triangle begins as:
-1;
3, 4;
19, 17, 27;
53, 48, 55, 80;
111, 103, 107, 129, 175;
199, 188, 189, 208, 251, 324;
323, 309, 307, 323, 363, 433, 539;
...
MATHEMATICA
Table[n^3 +m^3 -3*n*m, {n, 1, 10}, {m, 1, n}]//Flatten (* modified by G. C. Greubel, Apr 03 2019 *)
PROG
(PARI) {T(n, k) = n^3 -3*n*k +k^3};
for(n=1, 10, for(k=1, n, print1(T(n, k), ", "))) \\ G. C. Greubel, Apr 03 2019
(Magma) [[n^3 -3*n*k +k^3: k in [1..n]]: n in [1..10]]; // G. C. Greubel, Apr 03 2019
(Sage) [[n^3 -3*n*k +n^3 for k in (1..n)] for n in (1..10)] # G. C. Greubel, Apr 03 2019
(GAP) Flat(List([1..10], n-> List([1..n], k-> n^3 -3*n*k +k^3 ))); # G. C. Greubel, Apr 03 2019
CROSSREFS
Sequence in context: A344459 A348349 A248590 * A100340 A042175 A041703
KEYWORD
sign
AUTHOR
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 March 28 11:46 EDT 2024. Contains 371241 sequences. (Running on oeis4.)