login
A171173
Triangle read by rows in which row n lists A033627(n) together with the first 2n-1 positive integers.
10
2, 1, 4, 1, 2, 3, 7, 1, 2, 3, 4, 5, 10, 1, 2, 3, 4, 5, 6, 7, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 22, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 25, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 28, 1
OFFSET
1,1
COMMENTS
The same as A171172 except the initial term.
Also, a(n) is the length of each component of the n-th L-toothpick added to the structure of A171165.
See also A171175, a permutation of the natural numbers.
EXAMPLE
Triangle begins:
2,1,
4,1,2,3,
7,1,2,3,4,5,
10,1,2,3,4,5,6,7,
13,1,2,3,4,5,6,7,8,9,
16,1,2,3,4,5,6,7,8,9,10,11,
19,1,2,3,4,5,6,7,8,9,10,11,12,13,
22,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,
25,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,
MATHEMATICA
Join[{2, 1}, Flatten[Table[Flatten[{3n+1, Range[2n+1]}], {n, 10}]]] (* Harvey P. Dale, Nov 24 2011 *)
KEYWORD
easy,nonn,tabf
AUTHOR
Omar E. Pol, Feb 23 2010
STATUS
approved