login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A014643 Triangular array starting with {1,1}; then i-th term in a row gives number of i's in next row. 4
1, 1, 1, 2, 1, 2, 2, 1, 2, 2, 3, 3, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
The row {2} could be safely prepended to this triangle. - Gus Wiseman, May 13 2018
LINKS
Alois P. Heinz, Rows n = 1..8, flattened
EXAMPLE
Triangle begins:
{1,1},
{1,2},
{1,2,2},
{1,2,2,3,3},
...
MAPLE
T:= proc(n) option remember; `if`(n=0, 2, (l->
seq(i$l[i], i=1..nops(l)))([T(n-1)]))
end:
seq(T(n), n=1..7); # Alois P. Heinz, May 17 2018
MATHEMATICA
NestList[Join@@Table[Table[i, {#[[i]]}], {i, Length[#]}]&, {2}, 8] (* Gus Wiseman, May 13 2018 *)
CROSSREFS
Rows converge to A001462.
Sequence in context: A308694 A280521 A278043 * A236265 A238645 A118382
KEYWORD
tabf,nonn
AUTHOR
EXTENSIONS
More terms from Patrick De Geest
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 29 00:26 EDT 2024. Contains 371264 sequences. (Running on oeis4.)