A140995 Triangle G(n, k) read by rows, for 0 <= k <= n, where G(n, n) = G(n+1, 0) = 1, G(n+2, 1) = 2, G(n+3, 2) = 4, G(n+4, 3) = 8, and G(n+5, m) = G(n+1, m-3) + G(n+1, m-4) + G(n+2, m-3) + G(n+3, m-2) + G(n+4, m-1) for n >= 0 and m = 4..(n+4).
1, 1, 1, 1, 2, 1, 1, 2, 4, 1, 1, 2, 4, 8, 1, 1, 2, 4, 8, 16, 1, 1, 2, 4, 8, 17, 31, 1, 1, 2, 4, 8, 17, 35, 60, 1, 1, 2, 4, 8, 17, 35, 72, 116, 1, 1, 2, 4, 8, 17, 35, 72, 148, 224, 1, 1, 2, 4, 8, 17, 35, 72, 149, 303, 432, 1, 1, 2, 4, 8, 17, 35, 72, 149, 308, 618, 833, 1, 1, 2, 4, 8, 17, 35, 72, 149, 308, 636, 1257, 1606, 1
Offset: 0
Examples
Triangle begins: 1 1 1 1 2 1 1 2 4 1 1 2 4 8 1 1 2 4 8 16 1 1 2 4 8 17 31 1 1 2 4 8 17 35 60 1 1 2 4 8 17 35 72 116 1 1 2 4 8 17 35 72 148 224 1 1 2 4 8 17 35 72 149 303 432 1 1 2 4 8 17 35 72 149 308 618 833 1 ...
Links
- Juri-Stepan Gerasimov, Stepan's triangles and Pascal's triangle are connected by the recurrence relation ...
Crossrefs
Formula
From Petros Hadjicostas, Jun 13 2019: (Start)
G(n, k) = A140996(n, n-k) for 0 <= k <= n.
Bivariate g.f.: Sum_{n,k >= 0} G(n, k)*x^n*y^k = (x^5*y^4 - x^4*y^4 - x^3*y^3 + x^3*y^2 - x^2*y^2 + x^2*y - x*y + 1)/((1- x*y) * (1- x) * (1 - x*y - x^2*y^2 -x^3*y^3 - x^4*y^4 - x^4*y^3)).
Substituting y = 1 in the above bivariate function and simplifying, we get the g.f. of row sums: 1/(1 - 2*x). Hence, the row sums are powers of 2; i.e., A000079.
(End)
Extensions
Entries checked by R. J. Mathar, Apr 14 2010
Name edited by and more terms from Petros Hadjicostas, Jun 13 2019
Comments