A098355 Multiplication table of the powers of three read by antidiagonals.
1, 3, 3, 9, 9, 9, 27, 27, 27, 27, 81, 81, 81, 81, 81, 243, 243, 243, 243, 243, 243, 729, 729, 729, 729, 729, 729, 729, 2187, 2187, 2187, 2187, 2187, 2187, 2187, 2187, 6561, 6561, 6561, 6561, 6561, 6561, 6561, 6561, 6561, 19683, 19683, 19683, 19683, 19683, 19683
Offset: 0
Examples
1; 3,3; 9,9,9; 27,27,27,27;
Links
- Jeremy Gardiner, Table of n, a(n) for n = 0..349
Programs
-
Mathematica
Flatten[Table[3^x, {x, 0, 13}, {y, 0, x}]] (* Alonso del Arte, Nov 29 2011 *)
Comments