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.

A381367 Number of possible configurations of an n dimensional Rubik's hypercube.

Original entry on oeis.org

43252003274489856000, 1756772880709135843168526079081025059614484630149557651477156021733236798970168550600274887650082354207129600000000000000
Offset: 3

Views

Author

Michel Marcus, Feb 21 2025

Keywords

Comments

a(4) was calculated by Kamack and Keane (1982) and Velleman (1992). - Amiram Eldar, Mar 03 2025

Crossrefs

Cf. A075152 (for a(3)), A381366.

Programs

  • Mathematica
    a[n_] := (1/(If[n >= 5, 1, 3]*2^(2^n + 2*(n-2)))) * Product[(n-i)!^(2^(n-i)*Binomial[n, i])*(2^(n-i) * Binomial[n, i])!, {i, 0, n-2}]; Array[a, 2, 3] (* Amiram Eldar, Feb 21 2025 *)
  • PARI
    a(n) = my(c=1); if (n<5, c=3); prod(i=0, n-2, ((n-i)!)^((2^(n-i)*binomial(n,i)))*((2^(n-i)*binomial(n,i))!))/(c*(2^(2^n+2*(n-2))));

Formula

See formula (26) on p. 16 of Marchetti.