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.

A095860 Triangle read by rows: T(n,k) = n^(k^2), n>=1, 1<=k<=n.

Original entry on oeis.org

1, 2, 16, 3, 81, 19683, 4, 256, 262144, 4294967296, 5, 625, 1953125, 152587890625, 298023223876953125, 6, 1296, 10077696, 2821109907456, 28430288029929701376, 10314424798490535546171949056, 7, 2401, 40353607, 33232930569601
Offset: 1

Views

Author

Herman Jamke (hermanjamke(AT)fastmail.fm), Jul 10 2004

Keywords

Examples

			From _Paolo Xausa_, May 28 2024: (Start)
Triangle begins:
[1]  1;
[2]  2,  16;
[3]  3,  81,   19683;
[4]  4, 256,  262144,  4294967296;
[5]  5, 625, 1953125, 152587890625, 298023223876953125;
... (End)
		

Programs

  • Mathematica
    Table[n^k^2, {n, 8}, {k, n}] (* Paolo Xausa, May 28 2024 *)