A131299 Triangle T(n,k) = 3*binomial(n-floor((k+1)/2), floor(k/2))-2 with k=0..n, read by rows.
1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 7, 4, 1, 1, 1, 10, 7, 7, 1, 1, 1, 13, 10, 16, 7, 1, 1, 1, 16, 13, 28, 16, 10, 1, 1, 1, 19, 16, 43, 28, 28, 10, 1, 1, 1, 22, 19, 61, 43, 58, 28, 13, 1, 1, 1, 25, 22, 82, 61, 103, 58, 43, 13, 1, 1, 1, 28, 25, 106, 82, 166
Offset: 0
Examples
Triangle begins: 1; 1, 1; 1, 1, 1; 1, 1, 4, 1; 1, 1, 7, 4, 1; 1, 1, 10, 7, 7, 1; 1, 1, 13, 10, 16, 7, 1; ...
Links
- Nathaniel Johnston, Rows n = 0..100, flattened
Programs
-
Maple
A131299 := proc(n,k) 3*binomial(n-floor((k+1)/2),floor(k/2))-2 ; end proc; # Nathaniel Johnston, Jun 30 2011
Extensions
Better definition from Bruno Berselli, May 03 2012
Comments