login

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”).

A095881
Triangle read by rows: T(n,k) = (n-k+1)^(n^2), n>=1, 1<=k<=n.
0
1, 16, 1, 19683, 512, 1, 4294967296, 43046721, 65536, 1, 298023223876953125, 1125899906842624, 847288609443, 33554432, 1, 10314424798490535546171949056, 14551915228366851806640625, 4722366482869645213696, 150094635296999121, 68719476736, 1
OFFSET
1,2
EXAMPLE
Triangle begins:
1;
16, 1;
19683, 512, 1;
4294967296, 43046721, 65536, 1;
298023223876953125, 1125899906842624, 847288609443, 33554432, 1;
...
PROG
(PARI) row(n) = vector(n, k, (n-k+1)^(n^2)); \\ Michel Marcus, Feb 07 2023
CROSSREFS
Sequence in context: A095876 A360062 A095851 * A040251 A040250 A065645
KEYWORD
easy,nonn,tabl
AUTHOR
Herman Jamke (hermanjamke(AT)fastmail.fm), Jul 10 2004
STATUS
approved