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!)
A120701 Number of unit circles which fit touching a circle of radius n-1, i.e., with their centers on a circle of radius n. 2
2, 6, 9, 12, 15, 18, 21, 25, 28, 31, 34, 37, 40, 43, 47, 50, 53, 56, 59, 62, 65, 69, 72, 75, 78, 81, 84, 87, 91, 94, 97, 100, 103, 106, 109, 113, 116, 119, 122, 125, 128, 131, 135, 138, 141, 144, 147, 150, 153, 157, 160, 163, 166, 169, 172, 175, 179, 182, 185, 188 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Coincides with A022844 = floor(n*Pi) except at n=1, 25510582, ... (sequence A120702).
LINKS
FORMULA
a(n) = floor(Pi/arcsin(1/n)).
MATHEMATICA
Table[Floor[Pi/ArcSin[1/n]], {n, 60}] (* Indranil Ghosh, Jul 21 2017 *)
PROG
(Python)
from mpmath import mp, pi, asin
mp.dps=100
def a(n): return int(floor(pi/asin(1./n)))
print([a(n) for n in range(1, 61)]) # Indranil Ghosh, Jul 21 2017
(SageMath) [floor(pi/arcsin(1/n)) for n in range(1, 71)] # G. C. Greubel, Aug 25 2023
(Magma) R:= RealField(30); [Floor(Pi(R)/Arcsin(1/n)) : n in [1..70]]; // G. C. Greubel, Aug 25 2023
CROSSREFS
Sequence in context: A119720 A173978 A000134 * A350235 A189752 A206813
KEYWORD
easy,nonn
AUTHOR
Martin Fuller, Jun 28 2006
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 April 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)