|
| |
|
|
A162711
|
|
Triangle read by rows: T(n,k) = value of the string of length k beginning at position n in the concatenation of natural numbers in decimal representation, 1<=k<=n.
|
|
2
| |
|
|
1, 2, 23, 3, 34, 345, 4, 45, 456, 4567, 5, 56, 567, 5678, 56789, 6, 67, 678, 6789, 67891, 678910, 7, 78, 789, 7891, 78910, 789101, 7891011, 8, 89, 891, 8910, 89101, 891011, 8910111, 89101112, 9, 91, 910, 9101, 91011, 910111, 9101112, 91011121, 910111213
(list; table; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| A055642(T(n,k)) <= k;
T(n,1)=A007376(n); T(n,k)=10*T(n,k-1)+A007376(k), 1<k<=n;
T(n,2)=A136414(n) for n>1.
|
|
|
CROSSREFS
| Sequence in context: A076653 A114008 A110354 * A120713 A167920 A104644
Adjacent sequences: A162708 A162709 A162710 * A162712 A162713 A162714
|
|
|
KEYWORD
| base,nonn,tabl
|
|
|
AUTHOR
| Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Jul 11 2009
|
| |
|
|