A265189 Soddy circles: the two circles tangent to each of three mutually tangent circles.
69, 46, 23, 6, 138, 70, 30, 21, 5, 105, 132, 33, 11, 4, -132, 138, 92, 46, 12, 276, 140, 60, 42, 10, 210, 153, 136, 72, 17, 306, 207, 138, 69, 18, 414, 210, 90, 63, 15, 315, 216, 135, 24, 10, -135, 238, 119, 102, 21, 357, 252, 63, 28, 9, 0
Offset: 1
Links
- Colin Barker, Table of n, a(n) for n = 1..1000
- Kival Ngaokrajang, Illustration of a(1) - a(5), a(41) - a(45) and a(51) - a(55)
- Eric Weisstein's World of Mathematics, Soddy Circles
- Wikipedia, Descartes' theorem
Crossrefs
Programs
-
PARI
soddy(amax) = { my(L=List(), abc, t, u); for(a=1, amax, for(b=1, a-1, for(c=1, b-1, abc=a*b*c; if(issquare(abc*(a+b+c), &t), u=a*b+a*c+b*c; if(abc%(u+2*t) == 0, if(u-2*t != 0, if(abc%(u-2*t) == 0, listput(L, [a,b,c,abc\(u+2*t),-abc\(u-2*t)]) ) , listput(L, [a,b,c,abc\(u+2*t),0]) ) ) ) ) ) ); Vec(L) } soddy(253)
Comments