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.

A098355 Multiplication table of the powers of three read by antidiagonals.

Original entry on oeis.org

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

Views

Author

Douglas Stones (dssto1(AT)student.monash.edu.au), Sep 04 2004

Keywords

Comments

3^A003056: 3^n appears n+1 times.

Examples

			1; 3,3; 9,9,9; 27,27,27,27;
		

Crossrefs

Programs

  • Mathematica
    Flatten[Table[3^x, {x, 0, 13}, {y, 0, x}]] (* Alonso del Arte, Nov 29 2011 *)