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.

A092283 Triangular array read by rows: T(n,k)=n+k^2, 1<=k<=n.

Original entry on oeis.org

2, 3, 6, 4, 7, 12, 5, 8, 13, 20, 6, 9, 14, 21, 30, 7, 10, 15, 22, 31, 42, 8, 11, 16, 23, 32, 43, 56, 9, 12, 17, 24, 33, 44, 57, 72, 10, 13, 18, 25, 34, 45, 58, 73, 90, 11, 14, 19, 26, 35, 46, 59, 74, 91, 110, 12, 15, 20, 27, 36, 47, 60, 75, 92, 111, 132, 13, 16, 21, 28, 37
Offset: 1

Views

Author

Reinhard Zumkeller, Jan 27 2004

Keywords

Comments

T(n,n) = A002378(n+1);
Sum(T(n,k):1<=k<=n) = A000330(n) + A000290(n).

Examples

			   2 ;
   3   6 ;
   4   7  12 ;
   5   8  13  20;
   6   9  14  21  30;
   7  10  15  22  31  42 ;
   8  11  16  23  32  43  56 ;
   9  12  17  24  33  44  57  72 ;
  10  13  18  25  34  45  58  73  90 ;
  11  14  19  26  35  46  59  74  91 110 ;
		

Crossrefs

Cf. A101986 (row sums).

Programs

  • Mathematica
    Table[n+k^2,{n,20},{k,n}]//Flatten (* Harvey P. Dale, Jun 24 2017 *)