OFFSET
1,2
COMMENTS
Apparently, T(n,k) ~ n*2^k as n grows.
LINKS
Paul Tek, Table of n, a(n) for n = 1..10000
EXAMPLE
The first rows are:
[1]
[2,3]
[4,6,9]
[5,10,16,25]
For T(1,1), we choose the first integer not yet used: 1.
For T(2,1), we choose the first integer not yet used: 2.
For T(2,2), we choose the first integer >= T(1,1)+T(2,1) not yet used: 3.
For T(3,1), we choose the first integer not yet used: 4.
For T(3,2), we choose the first integer >= T(2,1)+T(3,1) not yet used: 6.
For T(3,3), we choose the first integer >= T(2,2)+T(3,2) not yet used: 9.
etc.
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Paul Tek, Apr 23 2013
STATUS
approved