A080444 Write n A001055(n) times.
1, 2, 3, 4, 4, 5, 6, 6, 7, 8, 8, 8, 9, 9, 10, 10, 11, 12, 12, 12, 12, 13, 14, 14, 15, 15, 16, 16, 16, 16, 16, 17, 18, 18, 18, 18, 19, 20, 20, 20, 20, 21, 21, 22, 22, 23, 24, 24, 24, 24, 24, 24, 24, 25, 25, 26, 26, 27, 27, 27, 28, 28, 28, 28, 29, 30, 30, 30, 30, 30, 31, 32, 32, 32
Offset: 1
Examples
A001055(12) = 4 so a(18) through a(21) = 12,12,12,12
Links
- Reinhard Zumkeller, Rows n = 1..1000 of triangle, flattened
Programs
-
Haskell
a080444 n k = a080444_tabf !! (n-1) !! (k-1) a080444_row n = a080444_tabf !! (n-1) a080444_tabf = zipWith replicate a001055_list [1..] a080444_list = concat a080444_tabf -- Reinhard Zumkeller, Oct 01 2012
Extensions
More terms from Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Apr 06 2003
Keyword tabf added by Reinhard Zumkeller, Oct 01 2012
Comments