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-5 of 5 results.

A291742 Number of maximal independent vertex sets in the n-Fibonacci cube graph.

Original entry on oeis.org

2, 2, 3, 7, 22, 123, 2281, 221074, 300492228
Offset: 1

Views

Author

Andrew Howroyd, Aug 30 2017

Keywords

Comments

The size of the smallest set, the independent domination number, is given by A291297.

Examples

			Case n=1: The vertices are 0, 1. Each singleton vertex set is a maximal independent set, so a(1) = 2.
Case n=2: The vertices are 00, 01, 10. Maximal independent sets are {00} and {01, 10}, so a(2) = 2.
Case n=3: The vertices are 000, 001, 010, 100, 101. Maximal independent sets are {000, 101}, {010, 101}, {001, 010, 100}, so a(3)=3.
		

Crossrefs

Programs

  • Python
    from itertools import combinations, product
    from networkx import empty_graph, find_cliques
    def A291742(n):
        v = tuple(int(q,2) for q in (''.join(p) for p in product('01',repeat=n)) if '11' not in q)
        G = empty_graph(v)
        e = tuple((a,b) for a, b in combinations(v,2) if (lambda m: (m&-m)^m if m else 1)(a^b))
        G.add_edges_from(e)
        return sum(1 for c in find_cliques(G)) # Chai Wah Wu, Jan 14 2024

Extensions

a(9) from Pontus von Brömssen, Mar 06 2020

A291295 Domination number of n-Fibonacci cube graph.

Original entry on oeis.org

1, 1, 2, 3, 4, 5, 8, 12, 17, 25, 39
Offset: 1

Views

Author

N. J. A. Sloane, Aug 30 2017

Keywords

Crossrefs

Cf. A291573.

A291920 Number of dominating sets in the n-Fibonacci cube graph.

Original entry on oeis.org

3, 5, 19, 145, 4259, 988927, 7179358203
Offset: 1

Views

Author

Eric W. Weisstein, Sep 05 2017

Keywords

Crossrefs

Extensions

a(6)-a(7) from Andrew Howroyd, Sep 08 2017

A291963 Number of irredundant sets in the n-Fibonacci cube graph.

Original entry on oeis.org

3, 5, 16, 72, 870, 44000, 22405267
Offset: 1

Views

Author

Eric W. Weisstein, Sep 06 2017

Keywords

Crossrefs

Cf. A291573.

Extensions

a(6)-a(7) from Andrew Howroyd, Sep 06 2017

A303225 Number of minimal total dominating sets in the n-Fibonacci cube graph.

Original entry on oeis.org

1, 2, 2, 6, 70, 936, 86112, 202078331
Offset: 1

Views

Author

Eric W. Weisstein, Apr 20 2018

Keywords

Crossrefs

Extensions

a(7)-a(8) from Andrew Howroyd, Apr 20 2018
Showing 1-5 of 5 results.