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!)
A273090 Rectangular array A read by upward antidiagonals in which the entry A(n,k) in row k and column n gives the number of families of symmetric radially generated monohedral tilings of the disk (each tiling contains 2*(2*n+1)*k congruent tiles), k >= 1, n >= 1. 0

%I #7 May 15 2016 08:33:48

%S 2,62,2,116,1532,2,200,6402,50830,2,318,19884,446930,1855110,2,476,

%T 51128,2460462,34121322,71292624,2,682,115188,10106370,332112068,

%U 2741227176,2833906726,2,946,235180,33905948,2177193500,47162138964

%N Rectangular array A read by upward antidiagonals in which the entry A(n,k) in row k and column n gives the number of families of symmetric radially generated monohedral tilings of the disk (each tiling contains 2*(2*n+1)*k congruent tiles), k >= 1, n >= 1.

%C Enumeration is equivalent to counting beaded necklaces of a certain class (see A047996). For details and definitions, see the arXiv preprint by Haddley and Worsley.

%H Joel Haddley, Stephen Worsley, <a href="http://arxiv.org/abs/1512.03794">Infinite families of monohedral disk tilings</a>, arXiv preprint arXiv:1512.03794v2 [math.MG], 2016.

%F A(1,n) = 2, A(k,n) = 2*Sum_{i=0..2*(2*n+1)}Sum_{d | i, d | (2*(2*n+1)-i)*k} (phi(d)/i)*binomial((2*(2*n+1)-i)*k/d+i/d-1, i/d-1), k >= 2, n >= 1 [Haddley, Worsley, Proposition 5.1].

%e Array begins:

%e . 2 2 2 2 2 2

%e . 62 1532 50830 1855110 71292624 2833906726

%e . 116 6402 446930 34121322 2741227176 227759341712

%e . 200 19884 2460462 332112068 47162138964 6926365932512

%e . 318 51128 10106370 2177193500 493416845604 115646287581042

%e . 476 115188 33905948 10874491594 3668999040616 1280224897307324

%t a[1, n_] := 2; a[k_, n_] := 2*(1 + Sum[(1/i)*Sum[EulerPhi[d]*Binomial[(2*(2*n + 1) - i)*k/d + i/d - 1, i/d - 1], {d, Divisors[GCD[i, (2*(2*n + 1) - i)*k]]}], {i, 2*(2*n + 1)}]);

%t (* Array: *)

%t Grid[Table[a[k, n], {k, 6}, {n, 6}]]

%t (* Or array antidiagonals flattened: *)

%t Flatten[Table[a[k - n + 1, n], {k, 7}, {n, k}]]

%Y Cf. A047996.

%K nonn,tabl

%O 1,1

%A _L. Edson Jeffery_, May 14 2016

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 24 06:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)