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.

A343096 Number of n-colorings of an n X n grid, up to rotational symmetry.

Original entry on oeis.org

1, 1, 6, 4995, 1073758336, 74505806274453125, 2578606199622659276537193216, 64230894380264719522488136461023341060807, 1569275433846670190958947355821723644654155086251882971136, 49156762618888228404518977131728029071108432602235970059344750602021716398409
Offset: 0

Views

Author

Andrew Howroyd, Apr 14 2021

Keywords

Crossrefs

Main diagonal of A343095.
Cf. A002489.

Programs

  • Maple
    a:= n-> (n^(n^2)+2*n^((n^2+3*(n mod 2))/4)+n^((n^2+(n mod 2))/2))/4:
    seq(a(n), n=0..10);  # Alois P. Heinz, May 12 2021
  • PARI
    a(n) = {(n^(n^2) + 2*n^((n^2 + 3*(n%2))/4) + n^((n^2 + (n%2))/2))/4}

Formula

a(n) = (n^(n^2) + 2*n^((n^2 + 3*(n mod 2))/4) + n^((n^2 + (n mod 2))/2))/4.