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.

A309113 Number of possible permutations of a Megaminx of size 2n+1.

Original entry on oeis.org

1, 100669616553523347122516032313645505168688116411019768627200000000000
Offset: 0

Views

Author

Jianing Song, Jul 13 2019

Keywords

Comments

a(3) has 264 digits and a(4) has 574 digits.
The Megaminx is a dodecahedron-shaped puzzle similar to the Rubik's Cube. The rotational axes of the pieces are perpendicular to the faces. Here only a Megaminx of odd size is considered, see the picture below showing the relationship between the Megaminx of size 2n and 2n+1.

Examples

			See the Michael Gottlieb link above.
		

Crossrefs

Number of possible permutations of: tetrahedron puzzle (without tips: A309109, with tips: A309110); cube puzzle (A075152); octahedron puzzle (without tips: A309111, with tips: A309112); dodecahedron (this sequence).

Programs

  • PARI
    a(n) = if(n, 30! * 20! * 60!^(n^2-1) * 5!^(-12*n^2+12*n) * 2^(28-n) * 3^19, 1)

Formula

a(0) = 1; a(n) = 30! * 20! * 60!^(n^2-1) * 5!^(-12*n^2+12*n) * 2^(28-n) * 3^19 for n > 0.