A355955 a(n) is the least distance of two nodes on the same grid line in an infinite square lattice of one-ohm resistors for which the resistance measured between the two nodes is greater than n ohms.
1, 5, 107, 2460, 56922, 1317211, 30481165, 705355254, 16322409116
Offset: 0
Examples
a(0) = 1: R(1,0) = 1/2 is the first resistance > 0; a(1) = 5: R(4,0) = 0.953987..., R(5,0) = 1.025804658...; a(2) = 107: R(106,0) = 1.999103258858..., R(107,0) = 2.002092149977722...; a(3) = 2460: R(2459,0) = 2.999894481..., R(2460,0) = 3.0000239019301...; a(4) = 56922: R(56921,0) = 3.99999536602..., R(56922,0) = 4.0000009581... .
Links
- D. Atkinson and F. J. van Steenwijk, Infinite resistive lattices, Am. J. Phys. 67 (1999), 486-492. (See A211074 for an alternative link.)
- J. Cserti, Application of the lattice Green's function for calculating the resistance of infinite networks of resistors, arXiv:cond-mat/9909120 [cond-mat.mes-hall], 1999-2000.
Programs
-
PARI
\\ can be used to calculate estimates of terms for n >= 2, using the asymptotic formula. For n <= 8 results identical to those using the exact evaluation of the full integral are produced, but equality for higher terms might not hold, although with extremely remote probability. a355955_asymp(upto) = {my(c=2.2, Rsqasy(L)=(1/Pi)*(log(L)+Euler+log(8)/2), d, m); for (n=2, upto, d=exp(c*n); d=solve(x=0.5*d, 2.5*d, Rsqasy(x)-n); print1(ceil(d),", "); c=log(d)/n)}; a355955_asymp(8)
Comments