cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A171173 Triangle read by rows in which row n lists A033627(n) together with the first 2n-1 positive integers.

Original entry on oeis.org

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

Views

Author

Omar E. Pol, Feb 23 2010

Keywords

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.

Examples

			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,
		

Crossrefs

Programs

  • Mathematica
    Join[{2,1},Flatten[Table[Flatten[{3n+1,Range[2n+1]}],{n,10}]]] (* Harvey P. Dale, Nov 24 2011 *)