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!)
A026692 Triangular array T read by rows: T(n,0)=T(n,n)=1 for n >= 0; for n >= 2 and 1<=k<=n-1, T(n,k)=T(n-1,k-1)+T(n-2,k-1)+T(n-1,k) if k or n-k is of form 2h for h=1,2,...,[ n/4 ], else T(n,k)=T(n-1,k-1)+T(n-1,k). 15
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 4, 8, 4, 1, 1, 5, 15, 15, 5, 1, 1, 6, 24, 30, 24, 6, 1, 1, 7, 35, 54, 54, 35, 7, 1, 1, 8, 48, 89, 138, 89, 48, 8, 1, 1, 9, 63, 137, 281, 281, 137, 63, 9, 1, 1, 10, 80, 200, 507, 562, 507, 200, 80, 10, 1, 1, 11, 99, 280, 844 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
T(n, k) = number of paths from (0, 0) to (n-k, k) in directed graph having vertices (i, j) and edges (i, j)-to-(i+1, j) and (i, j)-to-(i, j+1) for i, j >= 0 and edges (i, j)-to-(i+1, j+1) for i odd and j >= i and for j odd and i >= j.
EXAMPLE
Triangle begins:
1;
1, 1;
1, 2, 1;
1, 3, 3, 1;
1, 4, 8, 4, 1;
1, 5, 15, 15, 5, 1;
...
MATHEMATICA
T[_, 0] = 1; T[n_, n_] = 1; T[n_, k_] /; EvenQ[k] && 1 <= k/2 <= Floor[n/4] || EvenQ[n-k] && 1 <= (n-k)/2 <= Floor[n/4] := T[n, k] = T[n-1, k-1] + T[n-2, k-1] + T[n-1, k]; T[n_, k_] := T[n, k] = T[n-1, k-1] + T[n-1, k];
Table[T[n, k], {n, 0, 11}, {k, 0, n}] // Flatten (* Jean-François Alcover, Jul 02 2017 *)
CROSSREFS
Sequence in context: A169945 A073134 A300260 * A114202 A125806 A347148
KEYWORD
nonn,tabl
AUTHOR
STATUS
approved

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 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)