A134868 A103451 * A002260.
1, 2, 2, 2, 2, 3, 2, 2, 3, 4, 2, 2, 3, 4, 5, 2, 2, 3, 4, 5, 6, 2, 2, 3, 4, 5, 6, 7, 2, 2, 3, 4, 5, 6, 7, 8, 2, 2, 3, 4, 5, 6, 7, 8, 9, 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13
Offset: 1
Examples
First few rows of the triangle: 1; 2, 2; 2, 2, 3; 2, 2, 3, 4; 2, 2, 3, 4, 5; ...
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Table[k + Boole[k == 1 && n != 2], {n, 2, 14}, {k, n - 1}] // Flatten (* Michael De Vlieger, Jul 19 2016 *)
Comments