A099465 Duplicate of A099094.
1, 0, 3, 3, 9, 18, 36, 81, 162, 351, 729, 1539, 3240, 6804, 14337, 30132, 63423, 133407
Offset: 0
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.
Rows begin: 1; 0, 3; 0, 3, 9; 0, 0, 18, 27; 0, 0, 9, 81, 81; 0, 0, 0, 81, 324, 243; 0, 0, 0, 27, 486, 1215, 729; ...
[[Binomial(k,n-k)*3^k: k in [0..n]]: n in [0.. 10]]; // Vincenzo Librandi, Feb 21 2015 /* as the triangle */
tabl(nn) = {for (n=0, nn, for (k=0, n, print1(binomial(k, n-k)*3^k, ", ");); print(););} \\ Michel Marcus, Feb 21 2015
Comments