A094617 Triangular array T of numbers generated by these rules: 2 is in T; and if x is in T, then 2x-1 and 3x-2 are in T.
2, 3, 4, 5, 7, 10, 9, 13, 19, 28, 17, 25, 37, 55, 82, 33, 49, 73, 109, 163, 244, 65, 97, 145, 217, 325, 487, 730, 129, 193, 289, 433, 649, 973, 1459, 2188, 257, 385, 577, 865, 1297, 1945, 2917, 4375, 6562, 513, 769, 1153, 1729, 2593, 3889, 5833, 8749, 13123, 19684
Offset: 1
Examples
Rows of this triangle begin: 2; 3, 4; 5, 7, 10; 9, 13, 19, 28; 17, 25, 37, 55, 82; 33, 49, 73, 109, 163, 244; 65, 97, 145, 217, 325, 487, 730; 129, 193, 289, 433, 649, 973, 1459, 2188; 257, 385, 577, 865, 1297, 1945, 2917, 4375, 6562; 513, 769, 1153, 1729, 2593, 3889, 5833, 8749, 13123, 19684; ...
Links
- Ivan Neretin, Table of n, a(n) for n = 1..5151
Programs
-
Mathematica
FoldList[Append[2 #1 - 1, 1 + 3^#2] &, {2}, Range[9]] // Flatten (* Ivan Neretin, Mar 30 2016 *)
Comments