login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A184277 Table read by antidiagonals: T(n,k) = number of distinct n X k toroidal 0..3 arrays. 7
4, 10, 10, 24, 76, 24, 70, 700, 700, 70, 208, 8296, 29184, 8296, 208, 700, 104968, 1398500, 1398500, 104968, 700, 2344, 1399176, 71582944, 268447936, 71582944, 1399176, 2344, 8230, 19175140, 3817765120, 54975633976, 54975633976 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1275 (first 48 terms from R. H. Hardin)
S. N. Ethier, Counting toroidal binary arrays, arXiv:1301.2352v1 [math.CO], Jan 10, 2013.
S. N. Ethier and Jiyeon Lee, Counting toroidal binary arrays, II, arXiv:1502.03792v1 [math.CO], Feb 12, 2015.
Peter Kagey and William Keehn, Counting tilings of the n X m grid, cylinder, and torus, arXiv:2311.13072 [math.CO], 2023. See pp. 3, 42.
FORMULA
T(n,k) = (1/(n*k)) * Sum_{c|n} Sum_{d|k} phi(c) * phi(d) * 4^(n*k/lcm(c,d)). - Andrew Howroyd, Sep 27 2017
EXAMPLE
Table starts
4 10 24 70 208 700
10 76 700 8296 104968 1399176
24 700 29184 1398500 71582944 3817765120
70 8296 1398500 268447936 54975633976 11728126132976
208 104968 71582944 54975633976 45035996274688
700 1399176 3817765120 11728126132976
2344 19175140 209430787824
8230 268447816
29144
MATHEMATICA
T[n_, k_] := (1/(n*k))*Sum[Sum[EulerPhi[c]*EulerPhi[d]*4^(n*k/LCM[c, d]), {d, Divisors[k]}], {c, Divisors[n]}];
Table[T[n-k+1, k], {n, 1, 9}, {k, 1, n}] // Flatten (* Jean-François Alcover, Oct 31 2017, after Andrew Howroyd *)
PROG
(PARI)
T(n, k) = (1/(n*k)) * sumdiv(n, c, sumdiv(k, d, eulerphi(c) * eulerphi(d) * 4^(n*k/lcm(c, d)))); \\ Andrew Howroyd, Sep 27 2017
CROSSREFS
Columns 1-5 are A001868, A184273, A184274, A184275, A184276.
Main diagonal is A184272.
Sequence in context: A310337 A201836 A201216 * A264163 A223165 A263558
KEYWORD
nonn,tabl
AUTHOR
R. H. Hardin, Jan 10 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)