A063723 Number of vertices in the Platonic solids (in the order tetrahedron, cube, octahedron, dodecahedron, icosahedron).
4, 8, 6, 20, 12
Offset: 1
Examples
a(2) = 8 since a cube has eight vertices.
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.
a(2) = 8 since a cube has eight vertices.
a(2) = 12 since a cube has twelve edges.
f[n_] := Block[{a = IntegerDigits[n - 1, 6] + 1, b = IntegerDigits[n, 6] + 1, c}, If[Length@b > Length@a, a = Prepend[a, 1]]; c = Transpose[{a, b}] /. {{d_, d_} -> 0, {1, 2} -> 1, {2, 3} -> 1, {3, 4} -> 2, {4, 5} -> 1, {5, 6} -> 1, {6, 1} -> 2}; Plus @@ c]; Array[f, 105]
Comments