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.

A246959 Numbers of (undirected) Hamiltonian cycles in the n-Sierpiński gasket graph.

Original entry on oeis.org

1, 1, 8, 13824, 71328803586048, 9798477119793909670551703700100284084649984
Offset: 1

Views

Author

Max Alekseyev, Sep 08 2014

Keywords

Crossrefs

Programs

  • Magma
    [1,1] cat [Floor(8 * 12^((3^(n-2)-3)/2)): n in [3..10]]; // Vincenzo Librandi, Jun 15 2015
  • Mathematica
    Join[{1, 1}, Table[8 12^((3^(n - 2) - 3)/2), {n, 3, 8}]] (* Eric W. Weisstein, Jun 17 2017 *)
    Join[{1, 1}, RecurrenceTable[{a[3] == 8, a[n] == (3 a[n - 1])^3}, a, {n, 3, 8}]] (* Eric W. Weisstein, Mar 25 2018 *)

Formula

For n >= 3, a(n) = 8 * 12^((3^(n-2)-3)/2).
For n >= 4, a(n) = (3*a(n-1))^3.