cp's OEIS Frontend

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.

A258445 Irregular triangle related to Pascal's triangle.

This page as a plain text file.
%I A258445 #48 Dec 02 2018 23:04:26
%S A258445 1,1,1,1,1,1,2,1,1,1,1,3,3,3,1,1,1,1,4,4,6,4,4,1,1,1,1,5,5,10,10,10,5,
%T A258445 5,1,1,1,1,6,6,15,15,20,15,15,6,6,1,1,1,1,7,7,21,21,35,35,35,21,21,7,
%U A258445 7,1,1,1,1,8,8,28,28,56,56,70,56,56,28,28,8,8,1,1,1,1,9,9,36,36,84,84,126,126,126,84,84,36,36,9,9,1,1
%N A258445 Irregular triangle related to Pascal's triangle.
%C A258445 The sequence of row lengths of this irregular triangle T(n, k) is A005408(n-1) = 2*n -1.
%C A258445 This array represents the height of water retention between a collection of cylinders whose height and arrangement are specified by Pascal's triangle.
%C A258445 The row sums for this retention are A164991.
%C A258445 Each term is the minimum of 3 terms of Pascal's triangle: 2 terms below and 1 above when k is odd, and 2 terms above and 1 below when k is even. - _Michel Marcus_, Jun 11 2015
%H A258445 Miguel Angel Amela, <a href="/A258445/a258445_2.png">Fractal Antenna</a>
%H A258445 Miguel Angel Amela, <a href="/A258445/a258445_1.png">Pascal Wave</a>
%H A258445 Craig Knecht, <a href="/A258445/a258445_2.jpg">Pascal's Neighborhood</a>
%H A258445 Craig Knecht, <a href="/A258445/a258445.jpg">Pascal Surface</a>
%H A258445 Craig Knecht, <a href="/A258445/a258445_1.jpg">Pascal Cylinders</a>
%H A258445 Wikipedia, <a href="http://en.wikipedia.org/wiki/Water retention on mathematical surfaces">Water Retention on Mathematical Surfaces</a>
%F A258445 T(n, 2*m) = Min(P(n-1, m-1), P(n-1, m), P(n, m)) with P(n, k) = A007318(n, k) = binomial(n, k), for m = 1, 2, ..., n-1, and
%F A258445 T(n, 2*m-1) = Min(P(n-1, m-1), P(n, m-1), P(n, m)) for m = 1, 2, ..., n. See the program by _Michel Marcus_. - _Wolfdieter Lang_, Jun 27 2015
%e A258445 The irregular triangle T(n, k) starts:
%e A258445 n\k 1 2 3 4  5  6  7  8  9 10 11 12 13 14 15 16 17
%e A258445 1:  1
%e A258445 2:  1 1 1
%e A258445 3:  1 1 2 1  1
%e A258445 4:  1 1 3 3  3  1  1
%e A258445 5:  1 1 4 4  6  4  4  1  1
%e A258445 6:  1 1 5 5 10 10 10  5  5  1  1
%e A258445 7:  1 1 6 6 15 15 20 15 15  6  6  1  1
%e A258445 8:  1 1 7 7 21 21 35 35 35 21 21  7  7  1  1
%e A258445 9:  1 1 8 8 28 28 56 56 70 56 56 28 28  8  8  1  1
%e A258445 ... Reformatted. - _Wolfdieter Lang_, Jun 26 2015
%o A258445 (PARI) tabf(nn) = {for (n=1, nn, for (k=1, 2*n-1, kk = (k+1)\2; if (k%2, v = min(binomial(n-1, kk-1), min(binomial(n, kk-1), binomial(n, kk))), v = min(binomial(n, kk), min(binomial(n-1, kk-1), binomial(n-1, kk)))); print1(v, ", ");); print(););} \\ _Michel Marcus_, Jun 16 2015
%Y A258445 Cf. A007318 (Pascal's triangle), A164991.
%K A258445 nonn,tabf,easy
%O A258445 1,7
%A A258445 _Craig Knecht_, May 30 2015