login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A128228
3
1, 2, 2, 3, 6, 3, 4, 8, 12, 4, 5, 10, 15, 20, 5, 6, 12, 18, 24, 30, 6, 7, 14, 21, 28, 35, 42, 7, 8, 16, 24, 32, 40, 48, 56, 8, 9, 18, 27, 36, 45, 54, 63, 72, 9, 10, 20, 30, 40, 50, 60, 70, 80, 90, 10
OFFSET
1,2
COMMENTS
Row sums = A006000: (1, 4, 12, 28, 55, 96, 154,...).
FORMULA
A128229 * A002260 as infinite lower triangular matrices.
Triangle, n * (each term of A128227).
T(n,k) = k*n if 1<=k<n, and T(n,n) = n. - Hartmut F. W. Hoft, Jun 10 2017
EXAMPLE
First few rows of the triangle are:
1;
2, 2;
3, 6, 3;
4, 8, 12, 4;
5, 10, 15, 20, 5;
6, 12, 18, 24, 30, 6;
7, 14, 21, 28, 35, 42, 7;
...
MATHEMATICA
(* first n rows of the triangle *)
a128228[n_] := Table[If[r==q, r, q r], {r, 1, n}, {q, 1, r}]
Flatten[a128228[10]] (* data *)
TableForm[a128228[7]] (* triangle *)
(* Hartmut F. W. Hoft, Jun 10 2017 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Feb 19 2007
STATUS
approved