cp's OEIS Frontend

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.

User: Grace Work

Grace Work's wiki page.

Grace Work has authored 1 sequences.

A330617 Triangle read by rows: T(n,k) is the number of paths from node 0 to k in a directed graph with n+1 vertices labeled 0, 1, ..., n and edges leading from i to i+1 for all i, and from i to i+2 for even i and from i to i-2 for odd i.

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 1, 2, 2, 2, 1, 2, 2, 2, 4, 1, 3, 2, 4, 4, 4, 1, 3, 2, 4, 4, 4, 8, 1, 4, 2, 6, 4, 8, 8, 8, 1, 4, 2, 6, 4, 8, 8, 8, 16, 1, 5, 2, 8, 4, 12, 8, 16, 16, 16, 1, 5, 2, 8, 4, 12, 8, 16, 16, 16, 32, 1, 6, 2, 10, 4, 16, 8, 24, 16, 32, 32, 32, 1, 6, 2, 10, 4, 16, 8, 24, 16, 32, 32, 32, 64
Offset: 0

Author

Grace Work, Mar 01 2020

Keywords

Examples

			First few rows of the triangle are:
  1;
  1,  1;
  1,  1,  2;
  1,  2,  2,  2;
  1,  2,  2,  2,  4;
  1,  3,  2,  4,  4,  4;
  1,  3,  2,  4,  4,  4,  8;
  1,  4,  2,  6,  4,  8,  8,  8;
  1,  4,  2,  6,  4,  8,  8,  8, 16;
  1,  5,  2,  8,  4, 12,  8, 16, 16, 16;
  1,  5,  2,  8,  4, 12,  8, 16, 16, 16, 32;
  ...
For n=6 and k=3, T(6,3)=4 is the number of paths from node 0 to node 3 along the directed network: {0,1,2,3}, {0,2,3}, {0,2,4,5,3}, {0,1,2,4,5,3}.
		

Crossrefs

Cf. A130128.

Programs

  • Mathematica
    Table[If[EvenQ@ k, 2^(k/2), 2^((k - 1)/2)*(Ceiling[n/2] - (k - 1)/2)], {n, 0, 12}, {k, 0, n}] // Flatten (* Michael De Vlieger, Mar 23 2020 *)
  • PARI
    T(n,k)={if(k%2, 2^(k\2)*((n+1)\2 - k\2), 2^(k/2))} \\ Andrew Howroyd, Mar 17 2020

Formula

For k odd: T(n, k) = 2^((k-1)/2)*(ceiling(n/2) - (k-1)/2).
For k even: T(n, k) = 2^(k/2).
T(2*n-1, 2*k-1) = A130128(n, k).