OFFSET
1,2
COMMENTS
The first column is A000124.
LINKS
Boris Putievskiy, Rows n = 1..30 of triangle, flattened
Boris Putievskiy, Transformations Integer Sequences And Pairing Functions, arXiv:1212.2732 [math.CO], 2012.
FORMULA
As a linear array, the sequence is a(n) = n^A002260(n) or
a(n) = n^(n-t(t+1)/2), where t=floor[(-1+sqrt(8*n-7))/2].
EXAMPLE
The start of the sequence as triangle array is:
1;
2,9;
4,25,216;
7,64,729,10000;
11, 144, 2197, 38416, 759375;
...
PROG
(Python)
t=int((math.sqrt(8*n-7) - 1)/ 2)
m=n**(n-t*(t+1)/2)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Boris Putievskiy, Dec 14 2012
STATUS
approved