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.

A307157 a(n) is the Narumi-Katayama index of the Fibonacci cube Gamma(n).

Original entry on oeis.org

1, 2, 24, 1152, 1399680, 290237644800, 520105859481600000000, 3435834286784202670080000000000000000, 3045775242579858715944293498880000000000000000000000000000000000
Offset: 1

Views

Author

Emeric Deutsch, Mar 27 2019

Keywords

Comments

The Fibonacci cube Gamma(n) can be defined as the graph whose vertices are the binary strings of length n without two consecutive 1's and in which two vertices are adjacent when their Hamming distance is exactly 1.
The Narumi-Katayama index of a connected graph is the product of the degrees of the vertices of the graph.

Examples

			a(2)=2 because the Fibonacci cube Gamma(2) is the path tree P_3 having 2 vertices of degree 1 and 1 vertex of degree 2; consequently, the Narumi-Katayama index is 1*1*2=2.
		

Crossrefs

Programs

  • Maple
    T := (n,k) -> add(binomial(n-2*i,k-i)*binomial(i+1,n-k-i+1), i=0..k):
    seq(mul(j^T(n,j), j=1..n), n=1..10);

Formula

a(n) = Product_{k=1..n} k^T(n, k), where T(n, k) = Sum_{i=0..k} binomial(n-2*i, k-i)*binomial(i+1, n-k-i+1). T(n,k) gives the number of vertices of degree k in the Fibonacci cube Gamma(n) (see A245825).