A182949 Joint-rank array of the numbers (3*i+1)*3^j, where i>=0, j>=0, by antidiagonals.
1, 2, 3, 5, 7, 4, 14, 19, 11, 6, 41, 55, 32, 16, 8, 122, 163, 95, 46, 21, 9, 365, 487, 284, 136, 60, 25, 10, 1094, 1459, 851, 406, 177, 73, 29, 12, 3281, 4375, 2552, 1216, 528, 217, 86, 34, 13, 9842, 13123, 7655, 3646, 1581, 649, 257, 100, 38, 15
Offset: 1
Examples
Northwest corner: 1....2....5....14... 3....7...19....55... 4...11...32....95... 6...16...46...136...
Links
- Clark Kimberling, Interspersions and Dispersions.
Programs
-
Mathematica
M[i_,j_]:=j+Floor[Log[3*i+1]/Log[3]]; T[i_,j_]:=Sum[Floor[2/3+(3*i+1)*3^(j-k-1)],{k,0,M[i,j]}]; TableForm[Table[T[i,j],{i,0,9},{j,0,9}]]
Comments