login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A354268 Table read by rows. T(n, k) = (n + k)^(n - 1) for n >= 1 and 0 <= k <= n, T(0, 0) = 0. 0
0, 1, 1, 2, 3, 4, 9, 16, 25, 36, 64, 125, 216, 343, 512, 625, 1296, 2401, 4096, 6561, 10000, 7776, 16807, 32768, 59049, 100000, 161051, 248832, 117649, 262144, 531441, 1000000, 1771561, 2985984, 4826809, 7529536, 2097152, 4782969, 10000000, 19487171, 35831808, 62748517, 105413504, 170859375, 268435456 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
EXAMPLE
Table T(n, k) begins:
[0] 0;
[1] 1, 1;
[2] 2, 3, 4;
[3] 9, 16, 25, 36;
[4] 64, 125, 216, 343, 512;
[5] 625, 1296, 2401, 4096, 6561, 10000;
[6] 7776, 16807, 32768, 59049, 100000, 161051, 248832;
[7] 117649, 262144, 531441, 1000000, 1771561, 2985984, 4826809, 7529536;
MAPLE
T := (n, k) -> ifelse(n = 0, 0, (n + k)^(n - 1)):
for n from 0 to 8 do seq(T(n, k), k = 0..n) od;
CROSSREFS
Cf. A000169 (column 0), A052746 (main diagonal).
Sequence in context: A119721 A098969 A235401 * A281882 A325436 A346777
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Jun 12 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 21 02:07 EDT 2024. Contains 375342 sequences. (Running on oeis4.)