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.
%I A093564 #37 Aug 28 2019 16:11:38 %S A093564 1,7,1,7,8,1,7,15,9,1,7,22,24,10,1,7,29,46,34,11,1,7,36,75,80,45,12,1, %T A093564 7,43,111,155,125,57,13,1,7,50,154,266,280,182,70,14,1,7,57,204,420, %U A093564 546,462,252,84,15,1,7,64,261,624,966,1008,714,336,99,16,1,7,71,325,885 %N A093564 (7,1) Pascal triangle. %C A093564 The array F(7;n,m) gives in the columns m>=1 the figurate numbers based on A016993, including the 9-gonal numbers A001106, (see the W. Lang link). %C A093564 This is the seventh member, d=7, in the family of triangles of figurate numbers, called (d,1) Pascal triangles: A007318 (Pascal), A029653, A093560-3, for d=1..6. %C A093564 This is an example of a Riordan triangle (see A093560 for a comment and A053121 for a comment and the 1991 Shapiro et al. reference on the Riordan group). Therefore the o.g.f. for the row polynomials p(n,x):=Sum_{m=0..n} a(n,m)*x^m is G(z,x)=(1+6*z)/(1-(1+x)*z). %C A093564 The SW-NE diagonals give A022097(n-1) = Sum_{k=0..ceiling((n-1)/2)} a(n-1-k,k), n >= 1, with n=0 value 6. Observation by _Paul Barry_, Apr 29 2004. Proof via recursion relations and comparison of inputs. %D A093564 Kurt Hawlitschek, Johann Faulhaber 1580-1635, Veroeffentlichung der Stadtbibliothek Ulm, Band 18, Ulm, Germany, 1995, Ch. 2.1.4. Figurierte Zahlen. %D A093564 Ivo Schneider: Johannes Faulhaber 1580-1635, Birkhäuser, Basel, Boston, Berlin, 1993, ch. 5, pp. 109-122. %H A093564 Reinhard Zumkeller, <a href="/A093564/b093564.txt">Rows n = 0..125 of triangle, flattened</a> %H A093564 W. Lang, <a href="/A093564/a093564.txt">First 10 rows and array of figurate numbers </a>. %F A093564 a(n, m)=F(7;n-m, m) for 0<= m <= n, otherwise 0, with F(7;0, 0)=1, F(7;n, 0)=7 if n>=1 and F(7;n, m):=(7*n+m)*binomial(n+m-1, m-1)/m if m>=1. %F A093564 Recursion: a(n, m)=0 if m>n, a(0, 0)= 1; a(n, 0)=7 if n>=1; a(n, m)= a(n-1, m) + a(n-1, m-1). %F A093564 G.f. column m (without leading zeros): (1+6*x)/(1-x)^(m+1), m>=0. %F A093564 T(n, k) = C(n, k) + 6*C(n-1, k). - _Philippe Deléham_, Aug 28 2005 %F A093564 exp(x) * e.g.f. for row n = e.g.f. for diagonal n. For example, for n = 3 we have exp(x)*(7 + 15*x + 9*x^2/2! + x^3/3!) = 7 + 22*x + 46*x^2/2! + 80*x^3/3! + 125*x^4/4! + .... The same property holds more generally for Riordan arrays of the form ( f(x), x/(1 - x) ). - _Peter Bala_, Dec 22 2014 %e A093564 Triangle begins %e A093564 [1]; %e A093564 [7, 1]; %e A093564 [7, 8, 1]; %e A093564 [7, 15, 9, 1]; %e A093564 ... %p A093564 N:= 20: # to get the first N rows %p A093564 T:=Matrix(N,N): %p A093564 T[1,1]:= 1: %p A093564 for m from 2 to N do %p A093564 T[m,1]:= 7: %p A093564 T[m,2..m]:= T[m-1,1..m-1] + T[m-1,2..m]; %p A093564 od: %p A093564 for m from 1 to N do %p A093564 convert(T[m,1..m],list) %p A093564 od; # _Robert Israel_, Dec 28 2014 %o A093564 (Haskell) %o A093564 a093564 n k = a093564_tabl !! n !! k %o A093564 a093564_row n = a093564_tabl !! n %o A093564 a093564_tabl = [1] : iterate %o A093564 (\row -> zipWith (+) ([0] ++ row) (row ++ [0])) [7, 1] %o A093564 -- _Reinhard Zumkeller_, Sep 01 2014 %Y A093564 Row sums: A000079(n+2), n>=1, 1 for n=0, alternating row sums are 1 for n=0, 6 for n=2 and 0 otherwise. %Y A093564 The column sequences give for m=1..9: A016993, A001106 (9-gonal), A007584, A051740, A051877, A050403, A027818, A034266, A055994. %Y A093564 Cf. A093565 (d=8). %K A093564 nonn,easy,tabl %O A093564 0,2 %A A093564 _Wolfdieter Lang_, Apr 22 2004