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.

Showing 1-3 of 3 results.

A368137 Number of ways of tiling the n X n torus up to the symmetries of the square by a tile that is fixed under 180-degree rotation.

Original entry on oeis.org

1, 23, 3776, 33601130, 5629507922944, 16397105889110874288, 808450637900797243544928256, 664613997892457948377435344457451552, 9021615045252487149406066393257455761827823616, 2008672555323737844427452616231411384297679581096869206528
Offset: 1

Views

Author

Peter Kagey, Dec 16 2023

Keywords

Crossrefs

Programs

  • Mathematica
    A368137[n_] := 1/(8 n^2)*(DivisorSum[n, Function[d, DivisorSum[n, Function[c, EulerPhi[c] EulerPhi[d] 4^(n^2/LCM[c, d])]]]] + n^2*If[EvenQ[n], 19*2^(n^2 - 2) + 2^(n^2/2), 2^(n^2 + 1)] + n*If[EvenQ[n], DivisorSum[n, Function[d, EulerPhi[ d] (If[EvenQ[d], 2 (2^(n^2/d) + 4^(n^2/d)), 2^(n^2/d)])]], DivisorSum[n, Function[d, EulerPhi[d] (If[EvenQ[d], 2 (2^(n^2/d) + 4^(n^2/d)), 0])]]])

A368138 Number of ways of tiling the n X n torus up to the symmetries of the square by an asymmetric tile.

Original entry on oeis.org

1, 154, 1864192, 2199026796168, 188894659314785812480, 1126800533536206914843196839296, 455117248949604553908892209645884928950272, 12259964326927110866866776228808161337250421224373748224, 21812926725659065797324660502998994022561529591086874194578215566049280
Offset: 1

Views

Author

Peter Kagey, Dec 16 2023

Keywords

Crossrefs

Programs

  • Mathematica
    A368138[n_] := 1/(8n^2)*(DivisorSum[n, Function[d, DivisorSum[n, Function[c, EulerPhi[c] EulerPhi[d] 8^(n^2/LCM[c, d])]]]] + If[EvenQ[n], n^2 (3/4*8^(n^2/2) + 8^(n^2/4)) + n*DivisorSum[n, Function[c, EulerPhi[c] (If[EvenQ[c], 2*8^(n^2/c), 8^(n^2/(2 c))])]], 0] + 2*n*DivisorSum[n, Function[d, EulerPhi[d]*If[EvenQ[d], 8^(n^2/(2 d)), 0]]])

A367536 Number of ways of tiling the n X n torus up to the symmetries of the square by a tile that is fixed under matrix transposition but no other symmetries.

Original entry on oeis.org

1, 17, 3692, 33572458, 5629501212064, 16397105857614447792, 808450637900676611412052288, 664613997892457939730524059906099232, 9021615045252487149405529092893182593313188608, 2008672555323737844427452615629277349189270615385935288832
Offset: 1

Views

Author

Peter Kagey, Dec 13 2023

Keywords

Comments

A Truchet tile is an example of a tile that is fixed under matrix transposition but no other symmetries.

Crossrefs

Programs

  • Mathematica
    A367536[n_] := 1/(8n^2) (DivisorSum[n, Function[d, DivisorSum[n, Function[c, EulerPhi[c] EulerPhi[d] 4^(n^2/LCM[c, d])]]]] +If[OddQ[n],n*DivisorSum[n, Function[c, EulerPhi[c] 2^(n^2/c + 1)]],n*DivisorSum[n, Function[c, EulerPhi[c] (4^(n^2/LCM[2, c]) + 2^(n^2/c + 1) + If[OddQ[c], 0, 4^(n^2/c)])]] + n^2 (3*2^(n^2 - 2) + 2^(n^2/2))])
Showing 1-3 of 3 results.