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.

A283048 a(n) = (6*n^2)!/((n^2)!^6).

Original entry on oeis.org

1, 720, 3246670537110000, 101097362223624462291180422369532000000, 11820969246826954556547676599863670334721199951925900837836206749590000
Offset: 0

Views

Author

Arkadiusz Wesolowski, Feb 27 2017

Keywords

Comments

For n >= 1, a(n) is the number of possible combinations of an n X n X n Rubik's cube with randomly placed stickers.

Crossrefs

Cf. A201555.

Programs

  • Magma
    [Factorial(6*n^2)/Factorial(n^2)^6: n in [0..4]];
    
  • Mathematica
    Table[(6*n^2)!/(n^2)!^6, {n, 0, 4}]
  • PARI
    a(n)=(6*n^2)!/(n^2)!^6;

Formula

a(n) = (6*n^2)!/((n^2)!^6).