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”).
%I #7 May 28 2024 09:14:04
%S 1,2,16,3,81,19683,4,256,262144,4294967296,5,625,1953125,152587890625,
%T 298023223876953125,6,1296,10077696,2821109907456,
%U 28430288029929701376,10314424798490535546171949056,7,2401,40353607,33232930569601
%N Triangle read by rows: T(n,k) = n^(k^2), n>=1, 1<=k<=n.
%H Paolo Xausa, <a href="/A095860/b095860.txt">Table of n, a(n) for n = 1..325</a> (rows 1..25 of the triangle, flattened).
%e From _Paolo Xausa_, May 28 2024: (Start)
%e Triangle begins:
%e [1] 1;
%e [2] 2, 16;
%e [3] 3, 81, 19683;
%e [4] 4, 256, 262144, 4294967296;
%e [5] 5, 625, 1953125, 152587890625, 298023223876953125;
%e ... (End)
%t Table[n^k^2, {n, 8}, {k, n}] (* _Paolo Xausa_, May 28 2024 *)
%K easy,nonn,tabl
%O 1,2
%A Herman Jamke (hermanjamke(AT)fastmail.fm), Jul 10 2004