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.

A368139 Number of ways of tiling the n X n torus up to diagonal and antidiagonal reflection of the square by two tiles that are each fixed under both diagonal and antidiagonal reflection.

Original entry on oeis.org

2, 6, 36, 1282, 340880, 477513804, 2872221202512, 72057600262282324, 7462505061854009276768, 3169126500572875969052992416, 5492677668532714149024993226980288, 38716571525226776302072008065489884436832, 1106936151351216411420647256070432280699273711360
Offset: 1

Views

Author

Peter Kagey, Dec 16 2023

Keywords

Crossrefs

Programs

  • Mathematica
    A368139[n_] := 1/(4n^2)*(DivisorSum[n, Function[d, DivisorSum[n, Function[c, EulerPhi[c] EulerPhi[d] 2^(n^2/LCM[c, d])]]]] + n^2*If[OddQ[n], 2^((n^2 + 1)/2), (7*2^(n^2/2 - 2))] + 2*n*DivisorSum[n, Function[d, EulerPhi[d]*If[EvenQ[d], 2^(n^2/(2 d)), 2^((n^2 + n)/(2d))]]])