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.

Showing 1-1 of 1 results.

A245963 Triangle read by rows: T(n,k) is the number of maximal hypercubes Q(p) in the Fibonacci cube Gamma(n) (i.e., Q(p) is an induced subgraph of Gamma(n) that is not a subgraph of a subgraph of Gamma(n) that is isomorphic to the hypercube Q(p+1)).

Original entry on oeis.org

1, 0, 1, 0, 2, 0, 1, 1, 0, 0, 3, 0, 0, 3, 1, 0, 0, 1, 4, 0, 0, 0, 6, 1, 0, 0, 0, 4, 5, 0, 0, 0, 1, 10, 1, 0, 0, 0, 0, 10, 6, 0, 0, 0, 0, 5, 15, 1, 0, 0, 0, 0, 1, 20, 7, 0, 0, 0, 0, 0, 15, 21, 1, 0, 0, 0, 0, 0, 6, 35, 8, 0, 0, 0, 0, 0, 1, 35, 28, 1, 0, 0, 0, 0, 0, 0, 21, 56, 9, 0, 0, 0, 0, 0, 0, 7, 70, 36, 1
Offset: 0

Views

Author

Emeric Deutsch, Aug 13 2014

Keywords

Comments

The nonzero entries in columns 0,1,2,... are rows 0,2,3,... of the Pascal triangle.
Row n contains 1+ceiling(n/2) entries.
Sum of entries in row n = A000931(n+6) (the Padovan sequence).
Sum_{k>=0}k*T(n,k) = A228364(n+1).

Examples

			Row 3 is 0,1,1. Indeed, the Fibonacci cube Gamma(3) is a square with an additional pendant edge attached to one of its vertices; the pendant edge is a maximal Q(1) and the square is a maximal Q(2).
Triangle starts:
  1;
  0, 1;
  0, 2;
  0, 1, 1;
  0, 0, 3;
  0, 0, 3, 1;
  0, 0, 1, 4;
  0, 0, 0, 6, 1;
		

Crossrefs

Programs

  • Maple
    T := proc (n, k) options operator, arrow: binomial(1+k, n-2*k+1) end proc: for n from 0 to 20 do seq(T(n, k), k = 0 .. (n+1)*(1/2)) end do; # yields sequence in triangular form
  • Mathematica
    Table[Binomial[k + 1, n - 2 k + 1], {n, 0, 17}, {k, 0, Ceiling[n/2]}] // Flatten (* Michael De Vlieger, Jul 16 2017 *)

Formula

T(n,k) = binomial(k+1,n-2*k+1).
G.f.: (1+t*z*(1+z))/(1-t*(1+z)*z^2).
Showing 1-1 of 1 results.