Thomas Young has authored 4 sequences.
A364607
Denominations of a 4-coin system that returns the fewest coins in change on average.
Original entry on oeis.org
A363381
a(n) is the number of distinct n-cell patterns that tile an n X n square.
Original entry on oeis.org
1, 2, 1, 60, 1, 102, 1, 62714
Offset: 1
For n = 1, there is one 1-cell pattern because there is only one unit square to paint.
For n = 2, there are two 2-cell patterns:
+---+---+ +---+---+ +---+
| 1 | 2 | | 1 | 2 | | 1 |
+---+---+ +---+---+ and +---+---+
| 3 | 4 | | 4 |
+---+---+ +---+
For n = 3, there is one 3-cell pattern:
+---+---+---+
| 1 | 2 | 3 |
+---+---+---+
| 4 | 5 | 6 | It is +---+---+---+
+---+---+---+ | 1 | 2 | 3 |
| 7 | 8 | 9 | +---+---+---+
+---+---+---+
For n = 4, there are sixty 4-cell patterns:
+---+---+---+---+
| 1 | 2 | 3 | 4 | One is +---+---+---+---+
+---+---+---+---+ | 1 | 2 | 3 | 4 |
| 5 | 6 | 7 | 8 | +---+---+---+---+
+---+---+---+---+
| 9 |10 |11 |12 | which is equivalent to:
+---+---+---+---+ +---+
|13 |14 |15 |16 | | 1 |
+---+---+---+---+ +---+
| 5 |
+---+
and therefore these two are not | 9 |
counted as distinct patterns. +---+
|13 |
+---+
Another 4-cell pattern for a 4 X 4 square
+---+---+---+---+
| x | x | y | y |
+---+---+---+---+ is
| z | y | x | a | +---+---+
+---+---+---+---+ | x | x |
| y | z | a | x | +---+---+---+
+---+---+---+---+ | x |
| a | a | z | z | +---+---+
+---+---+---+---+ | x |
+---+
+---+---+
| x | x |
+---+---+---+ is equivalent to
| x |
+---+---+
| x |
+---+
+---+---+ +---+ +---+
| y | y | | z | | a |
+---+---+---+ +---+---+ +---+---+
| y | | z | | a |
+---+---+ +---+---+---+ +---+---+---+
| y | | z | z | | a | a |
+---+ +---+---+ +---+---+
because the shapes can be created through reflection, rotation, or translation.
Therefore, they are counted as one pattern.
For n = 5, there is one 5-cell pattern.
A178842
a(n) = binomial((n-1)^2, n).
Original entry on oeis.org
0, 0, 4, 126, 4368, 177100, 8347680, 450978066, 27540584512, 1878392407320, 141629804643600, 11703541346076580, 1052134368066259632, 102250849636865496528, 10683770265451303535424, 1194448077521704400002650, 142288257910903254700704000, 17993390003427864738863790640
Offset: 1
-
List([1..20], n -> Binomial((n-1)^2, n)); # G. C. Greubel, Jan 21 2019
-
[Binomial((n-1)^2,n): n in [1..20]]; // G. C. Greubel, Jan 21 2019
-
a[n_] := Binomial[(n - 1)^2, n]; Array[a, 18] (* Robert G. Wilson v, Jul 25 2010 *)
-
vector(20, n, binomial((n-1)^2,n)) \\ G. C. Greubel, Jan 21 2019
-
[binomial((n-1)^2,n) for n in (1..20)] # G. C. Greubel, Jan 21 2019
A179094
Disorder number of the n X n grid graph.
Original entry on oeis.org
0, 5, 23, 61, 119, 213, 335, 509, 719, 997, 1319, 1725, 2183, 2741, 3359, 4093, 4895
Offset: 1
a(3) corrected and a(4)-a(17) computed by
D. S. McNeil, Aug 26 2010.
D. S. McNeil also finds that a(19)=6839, a(21)=9239, a(23)=12143.
Comments