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

A095887
Triangle read by rows: T(n,k) = (n-k+1)^n, n>=1, 1<=k<=n.
1
1, 4, 1, 27, 8, 1, 256, 81, 16, 1, 3125, 1024, 243, 32, 1, 46656, 15625, 4096, 729, 64, 1, 823543, 279936, 78125, 16384, 2187, 128, 1, 16777216, 5764801, 1679616, 390625, 65536, 6561, 256, 1, 387420489, 134217728, 40353607, 10077696, 1953125, 262144, 19683, 512, 1
OFFSET
1,2
LINKS
Robert Israel, Table of n, a(n) for n = 1..10011 (rows 1 to 141, flattened)
MAPLE
seq(seq((n-k+1)^n, k=1..n), n=1..10); # Robert Israel, Nov 27 2016
MATHEMATICA
Flatten[Table[(n-k+1)^n, {n, 10}, {k, n}]] (* Harvey P. Dale, Jul 18 2011 *)
CROSSREFS
Sequence in context: A118283 A095891 A367304 * A225213 A137906 A139051
KEYWORD
easy,nonn,tabl
AUTHOR
Herman Jamke (hermanjamke(AT)fastmail.fm), Jul 10 2004
STATUS
approved