login
A247646
Irregular triangle read by rows, arising in enumeration of lattice paths in strips.
1
1, 1, 3, 3, 1, 1, 3, 9, 5, 7, 1, 1, 1, 3, 9, 15, 12, 10, 9, 3, 1, 1, 1, 3, 9, 15, 27, 16, 20, 12, 14, 3, 3, 1, 1, 1, 3, 9, 15, 27, 37, 27, 25, 24, 18, 16, 6, 3, 3, 1, 1, 1, 3, 9, 15, 27, 37, 55, 33, 39, 29, 33, 20, 22, 6, 6, 3, 3, 1, 1
OFFSET
0,3
COMMENTS
It would be nice to have a more explicit definition.
EXAMPLE
Triangle begins:
1,
1,3,3,1,
1,3,9,5,7,1,1,
1,3,9,15,12,10,9,3,1,1,
1,3,9,15,27,16,20,12,14,3,3,1,1,
...
MATHEMATICA
v3[x_, k_] := Expand@Cancel[(1+2x+4x^2+2x^3+x^4 - x^(k-1) (k(k+1)/2+2(k+1)x+(-k^2+2k+4)x^2 + (6-2k)x^3 + (6-5k+k^2)x^4/2) + 2x^(2k-1) (k+x-(k-2)x^2) - x^(3k-1)) / ((1-x)^3 (1+x)^2)];
Table[CoefficientList[v3[x, k+2], x], {k, 0, 6}] // Flatten (* Andrei Zabolotskii, Apr 12 2026 *)
CROSSREFS
The diagonals on the left are given by A247643.
Sequence in context: A347026 A197928 A109439 * A133333 A296523 A171876
KEYWORD
nonn,tabf
AUTHOR
N. J. A. Sloane, Sep 23 2014
EXTENSIONS
Corrected and extended by Andrei Zabolotskii, Apr 12 2026
STATUS
approved