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.

A299028 Number of vertices in the iterated clique graphs of the 1-skeleton of Plato's icosahedron.

Original entry on oeis.org

12, 20, 32, 92, 472
Offset: 0

Views

Author

José Hernández, Feb 01 2018

Keywords

Comments

It is known that the sequence of orders of the iterated clique graphs of the icosahedron goes to infinity.

Examples

			By definition, the zeroth iterated clique graph of a graph G is equal to G itself; since the icosahedron has 12 vertices, a(0)=12.
The first iterated clique graph of the icosahedron has 20 vertices; hence, a(1)=20.
		

Crossrefs

Programs

  • YAGS
    K:=CliqueGraph;; g:=Icosahedron;; kg:=K(g);; Order(kg);
    # It outputs the number of vertices in the first iterated
    # clique graph of the icosahedron.