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.

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)).

This page as a plain text file.
%I A245963 #19 Jul 17 2017 01:42:18
%S A245963 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,
%T A245963 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,
%U A245963 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
%N 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)).
%C A245963 The nonzero entries in columns 0,1,2,... are rows 0,2,3,... of the Pascal triangle.
%C A245963 Row n contains 1+ceiling(n/2) entries.
%C A245963 Sum of entries in row n = A000931(n+6) (the Padovan sequence).
%C A245963 Sum_{k>=0}k*T(n,k) = A228364(n+1).
%H A245963 Michael De Vlieger, <a href="/A245963/b245963.txt">Table of n, a(n) for n = 0..10300</a> (Rows 1 <= n <= 200).
%H A245963 S. Klavzar, <a href="http://dx.doi.org/10.1007/s10878-011-9433-z">Structure of Fibonacci cubes: a survey</a>, J. Comb. Optim., 25, 2013, 505-522.
%H A245963 M. Mollard, <a href="http://arxiv.org/abs/1201.1494">Maximal hypercubes in Fibonacci and Lucas cubes</a>, arXiv:1201.1494 [math.CO], 2012.
%H A245963 M. Mollard, <a href="http://dx.doi.org/10.1016/j.dam.2012.06.003">Maximal hypercubes in Fibonacci and Lucas cubes</a>, Discrete Appl. Math., 160, 2012, 2479-2483.
%F A245963 T(n,k) = binomial(k+1,n-2*k+1).
%F A245963 G.f.: (1+t*z*(1+z))/(1-t*(1+z)*z^2).
%e A245963 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).
%e A245963 Triangle starts:
%e A245963   1;
%e A245963   0, 1;
%e A245963   0, 2;
%e A245963   0, 1, 1;
%e A245963   0, 0, 3;
%e A245963   0, 0, 3, 1;
%e A245963   0, 0, 1, 4;
%e A245963   0, 0, 0, 6, 1;
%p A245963 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
%t A245963 Table[Binomial[k + 1, n - 2 k + 1], {n, 0, 17}, {k, 0, Ceiling[n/2]}] // Flatten (* _Michael De Vlieger_, Jul 16 2017 *)
%Y A245963 Cf. A000931, A228364, A245964.
%K A245963 nonn,tabf
%O A245963 0,5
%A A245963 _Emeric Deutsch_, Aug 13 2014