A180414
Number of different resistances that can be obtained by combining n one-ohm resistors.
Original entry on oeis.org
1, 2, 4, 8, 16, 36, 80, 194, 506, 1400, 4039, 12044, 36406, 111324, 342447, 1064835, 3341434, 10583931, 33728050, 107931849, 346616201
Offset: 0
a(n) counts all resistances that can be obtained with fewer than n resistors as well as with exactly n resistors. Without a resistor the resistance is infinite, i.e., a(0) = 1. One 1-ohm resistor adds resistance 1, so a(1) = 2. Two resistors in parallel give 1/2 ohm, while in series they give 2 ohms. So a(2) is the number of elements in the set {infinity, 1, 1/2, 2}, i.e., a(2) = 4. - _Rainer Rosenthal_, Feb 07 2021
- Technology Review's Puzzle Corner, How many different resistances can be obtained by combining 10 one ohm resistors? Oct 3, 2003.
A113881
Table of smallest number of squares, T(m,n), needed to tile an m X n rectangle, read by antidiagonals.
Original entry on oeis.org
1, 2, 2, 3, 1, 3, 4, 3, 3, 4, 5, 2, 1, 2, 5, 6, 4, 4, 4, 4, 6, 7, 3, 4, 1, 4, 3, 7, 8, 5, 2, 5, 5, 2, 5, 8, 9, 4, 5, 3, 1, 3, 5, 4, 9, 10, 6, 5, 5, 5, 5, 5, 5, 6, 10, 11, 5, 3, 2, 5, 1, 5, 2, 3, 5, 11, 12, 7, 6, 6, 5, 5, 5, 5, 6, 6, 7, 12, 13, 6, 6, 4, 6, 4, 1, 4, 6, 4, 6, 6, 13, 14, 8, 4, 6, 2, 3, 7, 7, 3, 2, 6, 4, 8, 14
Offset: 1
Devin Kilminster (devin(AT)27720.net), Jan 27 2006
T(n,n) = 1 (1 n X n square).
T(n,1) = n (n 1 X 1 squares).
T(6,7) = 6 (2 3 X 3, 1 4 X 4, 1 2 X 2, 2 1 X 1).
T(11,13) = 6 (1 7 X 7, 1 6 X 6, 1 5 X 5, 2 4 X 4 1 1 X 1).
Table T(m,n) begins:
: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, ...
: 2, 1, 3, 2, 4, 3, 5, 4, 6, 5, ...
: 3, 3, 1, 4, 4, 2, 5, 5, 3, 6, ...
: 4, 2, 4, 1, 5, 3, 5, 2, 6, 4, ...
: 5, 4, 4, 5, 1, 5, 5, 5, 6, 2, ...
: 6, 3, 2, 3, 5, 1, 5, 4, 3, 4, ...
: 7, 5, 5, 5, 5, 5, 1, 7, 6, 6, ...
: 8, 4, 5, 2, 5, 4, 7, 1, 7, 5, ...
: 9, 6, 3, 6, 6, 3, 6, 7, 1, 6, ...
: 10, 5, 6, 4, 2, 4, 6, 5, 6, 1, ...
- Alois P. Heinz, Antidiagonals n = 1..350, flattened (using data from A219158)
- Bertram Felgenhauer, Filling rectangles with integer-sided squares
- Richard J. Kenyon, Tiling a rectangle with the fewest squares, Combin. Theory Ser. A 76 (1996), no. 2, 272-291.
- M. Ortolano, M. Abrate, and L. Callegaro, On the synthesis of Quantum Hall Array Resistance Standards, arXiv preprint arXiv:1311.0756 [physics.ins-det], 2013.
- Mark Walters, Rectangles as sums of squares, Discrete Math. 309 (2009), no. 9, 2913-2921.
-
(* *** Warning *** This empirical toy-program is based on the greedy algorithm. Its output was only verified for n+k <= 32. Any use outside this domain might produce only upper bounds instead of minimums. *)
nmax = 31; Clear[T];
Tmin[n_, k_] := Table[{1 + T[ c, k - c] + T[n - c, k], 1 + T[n, k - c] + T[n - c, c]}, {c, 1, k - 1}] // Flatten // Min;
Tmin2[n_, k_] := Module[{n1, n2, k1, k2}, 1 + T[n2, k1 + 1] + T[n - n1, k2] + T[n - n2, k1] + T[n1, k - k1] /. {Reduce[1 <= n1 <= n - 1 && 1 <= n2 <= n - 1 && 1 <= k1 <= k - 1 && 1 <= k2 <= k - 1 && n1 + 1 + n2 == n && k1 + 1 + k2 == k, Integers] // ToRules} // Min];
T[n_, n_] = 1;
T[n_, 1] := n;
T[1, k_] := k;
T[n_, k_ /; k > 1] /; n > k && Divisible[n, k] := n/k;
T[n_, k_ /; k > 1] /; n > k := T[n, k] = If[k >= 5 && n >= 6 && n - k <= 3, Min[Tmin[n, k], Tmin2[n, k], T[k, n - k] + 1], T[k, n - k] + 1];
T[n_, k_ /; k > 1] /; n < k := T[n, k] = T[k, n];
Table[T[n - k + 1, k], {n, 1, nmax}, {k, 1, n}] // Flatten (* Jean-François Alcover, Mar 11 2016, checked against first 496 terms of the b-file *)
A338601
Numerators x of resistance values R=x/y that can be obtained by a network of at most 10 one-ohm resistors such that a network of more than 10 one-ohm resistors is needed to obtain the resistance y/x. Denominators are in A338602.
Original entry on oeis.org
95, 101, 98, 97, 103, 97, 110, 103, 130, 103, 115, 106, 109, 98, 101
Offset: 1
All fractions for 10 resistors are: 95/106, 101/109, 98/103, 97/98, 103/101, 97/86, 110/91, 103/83, 130/101, 103/80, 115/89, 106/77, 109/77, 98/67, 101/67.
The corresponding networks are shown below, with -(always 1) and +(maximum node number) indicating the nodes where the voltage is applied. Edges marked ==, ||, //, or \\, have 2 resistors in parallel.
.
95/106 101/109 98/103 97/98 103/101
-1=======2 -1-------2 -1-------2 -1-------2 -1-------2
|\ /| |\ /|| |\ /| |\ /| |\ /|
| \ / | | \ / || | \ / | | \ / | | \ / |
| \ / | | \ / || | \ / | | \ / | | \ / |
| 4 | | 4 || | 4 | | 6 4 4 6 |
| / \ | | / \ || | //\ | | / \ | | / \ |
| / +6 | | / +6 || | // +6 | | / +7 | | / +7 |
|/ \| |/ \|| |// \| |/ \| |/ \|
3-------5 3-------5 3-------5 3-------5 3-------5
.
97/86 110/91 103/83 130/101 103/80
-1=======2 -1 -1-------2 -1-----2 -1=======2
| /| / \ | /|| | /|\ | /|
| / | / \ | 4 || | | | | | 4 |
| / | 2-----3 | / || | | | | | /| |
| 6 | ||\ / \ | 6 || | 4-6 | | / 6 |
| / \ | || \4/ | | / \ || | / | | | / | |
| 4 +7 | || \ | | / +7 || | / +7 | | / +7 |
|/ \| \\ +6--5 |/ \|| |/ \| |/ \|
3-------5 \\===// 3-------5 3-------5 3-------5
.
115/89 106/77 109/77 98/67 101/67
-1 -1-------2 -1-------2 -1-------2 -1-------2
/ \ | /|| | //| | /| | /|
/ \ | 4 || | 4 | | 6 | | 6 |
2-----3 | /| || | /| | | /| | | /| |
|\ / \ | / 6 || | / 6 | | / 7 | | / 7 4
| \6/ | | / | || | / | | | 4 | | | / | |
| \ | | / +7 || | / +7 | | / +8 | | / +8 |
| +7--5 |/ \|| |/ \| |/ \| |/ \|
4------/ 3-------5 3-------5 3-------5 3-------5
A338590
Denominators of resistance values that can be obtained from a network of exactly 10 one-ohm resistors, but not from any network with fewer than 10 one-ohm resistors. Numerators are in A338580.
Original entry on oeis.org
10, 17, 23, 22, 27, 33, 32, 25, 31, 37, 41, 35, 29, 40, 45, 39, 38, 43, 37, 57, 46, 51, 54, 49, 63, 43, 52, 47, 51, 60, 55, 41, 50, 59, 58, 49, 40, 53, 57, 48, 61, 43, 47, 64, 38, 59, 67, 71, 29, 33, 78, 45, 49, 53, 57, 61, 73, 75, 63, 59, 55, 51, 47, 82, 35, 31
Offset: 1
The list of the 2639 = A338197(10) resistance values, sorted by increasing size of R = A338580(n)/a(n), is [1/10, 2/17, 3/23, 3/22, 4/27, 5/33, 5/32, ..., 32/5, 33/5, 27/4, 22/3, 23/3, 17/2, 10]. There are 15 terms for which their reciprocal value is not in the sequence, given in A338601/A338602.
A338598
Denominators of resistance values < 1 ohm that can be obtained from a network of exactly 8 one-ohm resistors, but not from any network with fewer than 8 one-ohm resistors. Numerators are in A338580.
Original entry on oeis.org
8, 13, 17, 16, 19, 23, 22, 17, 21, 25, 27, 23, 19, 26, 29, 25, 24, 27, 23, 35, 28, 31, 32, 29, 37, 25, 30, 27, 29, 34, 31, 23, 28, 33, 32, 27, 22, 29, 31, 26, 33, 23, 25, 34, 20, 31, 35, 37, 15, 17, 40, 23, 25, 27, 29, 31, 37, 37, 31, 29, 27, 25, 23, 40, 17, 15
Offset: 1
The list of the 312 = A338197(8) resistance values, sorted by increasing size of R = A338580(n)/a(n) = A338608(n)/A338600(8), is the union of [1/8, 2/13, 3/17, ..., 27/28, 30/31, 34/35] and of the corresponding reciprocal resistances > 1 ohm [35/34, 31/30, 28/27, ..., 17/3, 13/2, 8].
A338583
Number of unlabeled 3-connected nonplanar graphs with n edges.
Original entry on oeis.org
1, 2, 3, 10, 29, 94, 343, 1291, 5206, 22061, 96908, 439837, 2053916, 9841412, 48319944, 242857491, 1248629027, 6563581656, 35258560001, 193463945790
Offset: 9
A348020
a(n) is the minimum number of unit resistors in a circuit with resistance R = A007305(n)/A007306(n).
Original entry on oeis.org
1, 2, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8
Offset: 1
First 31 terms coincide with
A070941.
A338579 can be used for a lookup of the position for a given rational R.
A339547
a(n) is the number of resistance values R=x/y that can be obtained by a network of at most n one-ohm resistors such that a network of more than n one-ohm resistors is needed to obtain the resistance y/x.
Original entry on oeis.org
15, 172, 1114, 5378, 22321, 83995, 293744, 968965
Offset: 10
a(10) = 15: this is the number of non-reciprocal resistance values provided in Karnofsky's solution of the 10-resistors puzzle. The list of 15 resistances is: 95/106, 101/109, 98/103, 97/98, 103/101, 97/86, 110/91, 103/83, 130/101, 103/80, 115/89, 106/77, 109/77, 98/67, 101/67.
a(11) = 172: the corresponding resistances are provided in A338581/A338591.
a(12) = 1114: the corresponding resistances are provided in A338582/A338592.
- Technology Review's Puzzle Corner, How many different resistances can be obtained by combining 10 one ohm resistors? Oct 3, 2003.
A340708
Maximum denominator of resistances obtained by an electrical network with n unit resistors.
Original entry on oeis.org
1, 2, 3, 5, 8, 13, 24, 40, 69, 130, 231, 408, 689, 1272, 2153, 3960, 6993, 12560
Offset: 1
Denominators for numerator a(15) = 2153 in electrical networks with 15 resistors:
1025,1049,1051,1058,1089,1104,1145,1184,1185,1193,1208,
1212,1219,1248,1254,1337,1382,1403,1526,1527,1529,1530,
1545,1547,1555,1579,1586,1632,1642,1647,1687,1699,1719.
Numerators for denominator a(15) = 2153 in electrical networks with 15 resistors:
899, 905, 934, 941, 945, 960, 968, 969,1008,1049,1064,
1095,1102,1104,1128,1137,1143,1147,1164,1182,1207,1296,
1359,1367,1387,1400,1447,1543.
Showing 1-9 of 9 results.
Comments