A140061 Triangle of quotients.
1, 3, 2, 5, 4, 3, 9, 8, 6, 4, 11, 10, 9, 8, 5, 17, 16, 15, 12, 10, 6, 21, 20, 18, 16, 15, 12, 7, 29, 28, 27, 24, 20, 18, 14, 8, 33, 32, 30, 28, 25, 24, 21, 16, 9, 41, 40, 39, 36, 35, 30, 28, 24, 18, 10, 47, 46, 45, 44, 40, 36, 35, 32, 27, 20, 11, 57, 56, 54, 52, 50, 48, 42, 40, 36
Offset: 1
Examples
First 6 rows: 1 3 2 5 4 3 9 8 6 4 11 10 9 8 5 17 16 15 12 10 6
Programs
-
Mathematica
Flatten@Table[Reverse@FoldList[#2*Floor[#1/#2+1]&,i,Reverse@Range[i-1]],{i,10}] (* Birkas Gyorgy, Feb 26 2011 *)
Comments