OFFSET
1,2
COMMENTS
The n-th row consists of the odd multiples of n from n*1 to n*(2n-1).
REFERENCES
R. Honsberger, Ingenuity in Math., Random House, 1970, p. 88.
FORMULA
n-th row adds to n^3.
a(n, k) = n(2k-1) for 1<=k<=n.
EXAMPLE
Triangle begins:
1
2 6
3 9 15
4 12 20 28
5 15 25 35 45
6 18 30 42 54 66
MATHEMATICA
Flatten[Table[n(2k-1), {n, 1, 12}, {k, 1, n}]]
CROSSREFS
KEYWORD
AUTHOR
N. J. A. Sloane, Mar 04 2003
EXTENSIONS
More terms from Dean Hickerson, Apr 06, 2003
STATUS
approved