A259343 A001116(n) + 1.
1, 3, 7, 13, 25, 41, 73, 127, 241, 273
Offset: 0
Links
- John Tangen, Letter to N. J. A. Sloane, Apr 27 1978
Crossrefs
Cf. A001116.
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
For a(2), the maximal number of pennies that can touch one penny is 6. For a(3), the most spheres that can simultaneously touch a central sphere of the same radius is 12.
R:= RealField(30); [Floor(Pi(R)/Arcsin(1/n)) : n in [1..70]]; // G. C. Greubel, Aug 25 2023
Table[Floor[Pi/ArcSin[1/n]], {n, 60}] (* Indranil Ghosh, Jul 21 2017 *)
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
[floor(pi/arcsin(1/n)) for n in range(1,71)] # G. C. Greubel, Aug 25 2023
Comments