login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A093644 (9,1) Pascal triangle. 19

%I #39 Jan 21 2020 00:44:26

%S 1,9,1,9,10,1,9,19,11,1,9,28,30,12,1,9,37,58,42,13,1,9,46,95,100,55,

%T 14,1,9,55,141,195,155,69,15,1,9,64,196,336,350,224,84,16,1,9,73,260,

%U 532,686,574,308,100,17,1,9,82,333,792,1218,1260,882,408,117,18,1,9,91,415

%N (9,1) Pascal triangle.

%C The array F(9;n,m) gives in the columns m>=1 the figurate numbers based on A017173, including the 11-gonal numbers A051682 (see the W. Lang link).

%C This is the ninth member, d=9, in the family of triangles of figurate numbers, called (d,1) Pascal triangles: A007318 (Pascal), A029653, A093560-5, for d=1..8.

%C 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+8*z)/(1-(1+x)*z).

%C The SW-NE diagonals give A022099(n-1) = Sum_{k=0..ceiling((n-1)/2)} a(n-1-k,k), n >= 1, with n=0 value 8. Observation by _Paul Barry_, Apr 29 2004. Proof via recursion relations and comparison of inputs.

%C Triangle T(n,k), read by rows, given by (9,-8,0,0,0,0,0,0,0,...) DELTA (1,0,0,0,0,0,0,0,...) where DELTA is the operator defined in A084938. - _Philippe Deléham_, Oct 10 2011

%D Kurt Hawlitschek, Johann Faulhaber 1580-1635, Veroeffentlichung der Stadtbibliothek Ulm, Band 18, Ulm, Germany, 1995, Ch. 2.1.4. Figurierte Zahlen.

%D Ivo Schneider: Johannes Faulhaber 1580-1635, Birkhäuser, Basel, Boston, Berlin, 1993, ch.5, pp. 109-122.

%H Reinhard Zumkeller, <a href="/A093644/b093644.txt">Rows n = 0..125 of triangle, flattened</a>

%H Wolfdieter Lang, <a href="/A093644/a093644.txt">First 10 rows and array of figurate numbers </a>.

%F a(n, m) = F(9;n-m, m) for 0 <= m <= n, otherwise 0, with F(9;0, 0)=1, F(9;n, 0)=9 if n >= 1 and F(9;n, m):=(9*n+m)*binomial(n+m-1, m-1)/m if m >= 1.

%F Recursion: a(n, m)=0 if m > n, a(0, 0)= 1; a(n, 0)=9 if n >= 1; a(n, m) = a(n-1, m) + a(n-1, m-1).

%F G.f. column m (without leading zeros): (1+8*x)/(1-x)^(m+1), m >= 0.

%F T(n, k) = C(n, k) + 8*C(n-1, k). - _Philippe Deléham_, Aug 28 2005

%F Row n: Expansion of (9+x)*((1+x)^(n-1), n > 0. - _Philippe Deléham_, Oct 10 2011

%F exp(x) * e.g.f. for row n = e.g.f. for diagonal n. For example, for n = 3 we have exp(x)*(9 + 19*x + 11*x^2/2! + x^3/3!) = 9 + 28*x + 58*x^2/2! + 100*x^3/3! + 155*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

%F G.f.: (-1-8*x)/(-1+x+x*y). - _R. J. Mathar_, Aug 11 2015

%e Triangle begins

%e [1];

%e [9, 1];

%e [9, 10, 1];

%e [9, 19, 11, 1];

%e ...

%o (Haskell)

%o a093644 n k = a093644_tabl !! n !! k

%o a093644_row n = a093644_tabl !! n

%o a093644_tabl = [1] : iterate

%o (\row -> zipWith (+) ([0] ++ row) (row ++ [0])) [9, 1]

%o -- _Reinhard Zumkeller_, Aug 31 2014

%Y Row sums: A020714(n-1), n >= 1, 1 for n=0, alternating row sums are 1 for n=0, 8 for n=2 and 0 otherwise.

%Y The column sequences give for m=1..9: A017173, A051682 (11-gonal), A007586, A051798, A051879, A050405, A052206, A056117, A056003.

%Y Cf. A093645 (d=10).

%K nonn,easy,tabl

%O 0,2

%A _Wolfdieter Lang_, Apr 22 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 09:52 EDT 2024. Contains 371698 sequences. (Running on oeis4.)