cp's OEIS Frontend

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.

User: Andras W. Ferencz

Andras W. Ferencz's wiki page.

Andras W. Ferencz has authored 1 sequences.

A285192 Array read by antidiagonals: T(n,k) = n*k*(3+n*k)/2 (n >= 0, k >= 0).

Original entry on oeis.org

0, 0, 0, 0, 2, 0, 0, 5, 5, 0, 0, 9, 14, 9, 0, 0, 14, 27, 27, 14, 0, 0, 20, 44, 54, 44, 20, 0, 0, 27, 65, 90, 90, 65, 27, 0, 0, 35, 90, 135, 152, 135, 90, 35, 0, 0, 44, 119, 189, 230, 230, 189, 119, 44, 0, 0, 54, 152, 252, 324, 350, 324, 252, 152, 54, 0
Offset: 0

Author

N. J. A. Sloane, Apr 26 2017, based on an email message from Andras W. Ferencz

Keywords

Examples

			Array begins:
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...]
[0, 2, 5, 9, 14, 20, 27, 35, 44, 54, ...]
[0, 5, 14, 27, 44, 65, 90, 119, 152, 189, ...]
[0, 9, 27, 54, 90, 135, 189, 252, 324, 405, ...]
[0, 14, 44, 90, 152, 230, 324, 434, 560, 702, ...]
[0, 20, 65, 135, 230, 350, 495, 665, 860, 1080, ...]
[0, 27, 90, 189, 324, 495, 702, 945, 1224, 1539, ...]
...
		

Crossrefs

Row 1 is A000096, row 2 is A014106, etc.

Programs

  • Maple
    T:= (n,k) -> n*k*(3+n*k)/2:
    seq(seq(T(k,n-k),k=0..n),n=0..10); # Robert Israel, Apr 26 2017
  • Mathematica
    Table[# k (3 + # k)/2 &[n - k], {n, 0, 10}, {k, n, 0, -1}] // Flatten (* Michael De Vlieger, Apr 26 2017 *)

Formula

G.f. as array: xy (2-x-y+2xy)/((1-x)^3 (1-y)^3). - Robert Israel, Apr 26 2017