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!)
A184288 Table read by antidiagonals: T(n,k) = number of distinct n X k toroidal 0..4 arrays. 5
5, 15, 15, 45, 175, 45, 165, 2635, 2635, 165, 629, 49075, 217125, 49075, 629, 2635, 976887, 20346485, 20346485, 976887, 2635, 11165, 20349075, 2034505661, 9536816875, 2034505661, 20349075, 11165, 48915, 435970995, 211927741375 (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 39 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.
FORMULA
T(n,k) = (1/(n*k)) * Sum_{c|n} Sum_{d|k} phi(c) * phi(d) * 5^(n*k/lcm(c,d)). - Andrew Howroyd, Sep 27 2017
EXAMPLE
Table starts
5 15 45 165 629 2635
15 175 2635 49075 976887 20349075
45 2635 217125 20346485 2034505661 211927741375
165 49075 20346485 9536816875 4768372070757
629 976887 2034505661 4768372070757
2635 20349075 211927741375
11165 435970995
48915
MATHEMATICA
T[n_, k_] := (1/(n*k))*Sum[Sum[EulerPhi[c] * EulerPhi[d] * 5^(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) * 5^(n*k/lcm(c, d)))); \\ Andrew Howroyd, Sep 27 2017
CROSSREFS
Columns 1-4 are A001869, A184286, A184287, A184288.
Sequence in context: A330082 A160275 A200858 * A015666 A291627 A045856
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 May 3 17:26 EDT 2024. Contains 372222 sequences. (Running on oeis4.)