|
| |
|
|
A120027
|
|
Triangle, generated from (3^(n-k) * 5^k) table.
|
|
1
| |
|
|
1, 3, 5, 9, 15, 25, 27, 45, 75, 125, 81, 135, 225, 375, 625, 243, 405, 675, 1125, 1875, 3125, 729, 1215, 2025, 3375, 5625, 9375, 15625, 2187, 3645, 6075, 10125, 16875, 28125, 46875, 78125, 6561, 10935, 18225, 30375, 50625, 84375, 140625, 234375
(list; table; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,2
|
|
|
COMMENTS
| Row 1 of the array (3, 15, 75, 375...) = A005053, (3 * 5^n), deleting the "1".
|
|
|
FORMULA
| Antidiagonals of the (3^i * 5^j) multiplication table, as an array.
|
|
|
EXAMPLE
| First few rows of the array are:
1, 5, 25, 125,...
3, 15, 75, 375,...
9, 45, 225, 1125,...
First few rows of the triangle are:
1;
3, 5;
9, 15, 25;
27, 45, 75, 125;
...
Example: a(17) = 675 = (3,2) in the array, = 3^3 * 5^2.
|
|
|
MATHEMATICA
| Table[3^(n - k)*5^k, {n, 0, 8}, {k, 0, n}] // Flatten (* Robert G. Wilson v *)
|
|
|
CROSSREFS
| Cf. A005053.
Cf. A005053, A036561, A036565, A036566.
Sequence in context: A057289 A056754 A003593 * A018586 A135342 A029877
Adjacent sequences: A120024 A120025 A120026 * A120028 A120029 A120030
|
|
|
KEYWORD
| nonn,tabl
|
|
|
AUTHOR
| Gary W. Adamson (qntmpkt(AT)yahoo.com), Jun 04 2006
|
|
|
EXTENSIONS
| More terms from Robert G. Wilson v (rgwv(at)rgwv.com), Jun 06 2006
|
| |
|
|