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.
%I A245960 #14 Nov 10 2024 14:26:50 %S A245960 1,1,0,0,2,1,0,3,0,1,0,0,6,0,1,0,0,5,5,0,1,0,0,3,8,6,0,1,0,0,0,14,7,7, %T A245960 0,1,0,0,0,8,22,8,8,0,1,0,0,0,3,27,27,9,9,0,1,0,0,0,0,25,42,35,10,10, %U A245960 0,1,0,0,0,0,11,66,55,44,11,11,0,1 %N A245960 Triangle read by rows: T(n,k) is the number of the vertices of the Lucas cube H_n having degree k (0<=k<=n). %C A245960 The vertex set of the Lucas cube H_n is the set of all binary strings of length n without consecutive 1's and without strings that start and end with 1. Two vertices are adjacent if their strings differ in exactly one bit. %C A245960 Sum of entries in row n (n>=1) is the Lucas number L(n) = F(n-1)+F(n+1), where F(n) = A000045(n) are the Fibonacci numbers. %C A245960 Sum(k*T(n,k), k=0..n) = 2*n*F(n-1) = 2*A099920(n-1). %H A245960 S. Klavzar, M. Mollard, M. Petkovsek, <a href="http://dx.doi.org/10.1016/j.disc.2011.03.019">The degree sequence of Fibonacci and Lucas cubes</a>, Discrete Math., 311, 2011, 1310-1322. %H A245960 S. Klavzar, <a href="http://www.fmf.uni-lj.si/~klavzar/preprints/FibonacciCubesRevised.pdf">Structure of Fibonacci cubes: a survey</a>, preprint. %H A245960 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 %F A245960 G.f.: (1+(1-t)*z+t^2*z^2+(1-t)*t*z^3-t*(1-t)^2*z^4)/((1-t*z)*(1-t*z^2)-t*z^3). %F A245960 If n>=2 then T(n,k) = sum(2*binomial(i,2i+k-n)*binomial(n-2i-1,k-i)+binomial(i-1,2i+k-n)*binomial(n-2i,k-i), i=0..k). Recall that binomial(m,k)=0 if k<0. %e A245960 Row 2 is 0,2,1 because the Lucas cube H_2 is the path-tree P_3 having 2 vertices of degree 1 and 1 vertex of degree 2. %e A245960 Row 3 is 0,3,0,1 because the Lucas cube H_3 is the star tree with 4 vertices; the vertex degrees are 1, 1, 1, and 3. %e A245960 Triangle starts: %e A245960 1; %e A245960 1,0; %e A245960 0,2,1; %e A245960 0,3,0,1; %e A245960 0,0,6,0,1; %e A245960 0,0,5,5,0,1; %p A245960 G := (1+(1-t)*z+z^2*t^2+(1-t)*z^3*t-(1-t)^2*z^4*t)/((1-t*z)*(1-z^2*t)-z^3*t): Gserz := simplify(series(G, z = 0, 20)): T := proc (n, k) options operator, arrow: coeff(coeff(Gserz, z, n), t, k) end proc: for n from 0 to 15 do seq(T(n, k), k = 0 .. n) end do; # yields sequence in triangular form %Y A245960 Cf. A000045, A099920. %K A245960 nonn,tabl %O A245960 0,5 %A A245960 _Emeric Deutsch_, Aug 08 2014