The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A240501 Given circular disks of radius r in a hexagonal lattice covered by a circular disk of radius R = r*2n, if the center of the circle is chosen at the middle between two lattice points, a(n) is the number of points at which an r-circle is tangent to the R-circle. 1
2, 2, 2, 6, 2, 2, 6, 2, 2, 6, 6, 2, 2, 2, 2, 6, 2, 6, 6, 6, 2, 6, 2, 2, 10, 2, 2, 2, 6, 2, 6, 6, 6, 6, 2, 2, 6, 2, 6, 6, 2, 2, 2, 2, 2, 18, 6, 6, 6, 2, 2, 6, 6, 2, 6, 6, 2, 2, 6, 6, 2, 2, 2, 6, 6, 2, 18, 2, 2, 6, 2, 6, 2, 10, 2, 6, 2, 6, 6, 2, 6, 6, 2, 2, 10, 6, 2, 6, 2, 2, 6, 6, 6, 2, 6, 2, 6, 6, 2, 6, 6, 6, 2, 2, 6, 6, 2, 6, 18, 6, 6, 6, 2, 2, 6, 6, 2, 2, 6, 2, 6, 2, 10, 18, 2, 2, 2, 2, 2, 18, 2, 2, 2, 2, 2, 6, 18, 2, 6, 6, 2, 6, 6, 6 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) are even R that give a(n) >= 2, which seems to be nonperiodic, for even R there is no contact point exist. This is the case of A053417.
Sequence A053416 addresses the case in which the center of the R-circle (R = r*n) is chosen at a lattice point instead; in that case, the number of contact points is 0 and 6 for even n > 0 and odd n > 1, respectively.
See illustrations in links.
LINKS
PROG
(Small Basic)
For r = 2 To 1000 Step 2
c = 0
imax = math.Floor((r-1)/math.Power(3, 0.5))
for i = 0 to imax
If Math.Remainder(i, 2) = 1 then
j = Math.Power(((r-1)*(r-1)-3*i*i)/4, 0.5)
Else
j = (Math.Power((r-1)*(r-1)-3*i*i, 0.5)+1)/2
EndIf
If j-math.Floor(j) = 0 Then
If i = 0 Then
c = c + 2
Else
c = c + 4
EndIf
endif
EndFor
TextWindow.Write(c+", ")
EndFor
CROSSREFS
Sequence in context: A241460 A167568 A361301 * A278251 A286847 A291439
KEYWORD
nonn
AUTHOR
Kival Ngaokrajang, Apr 06 2014
STATUS
approved

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 May 23 07:28 EDT 2024. Contains 372760 sequences. (Running on oeis4.)