OFFSET
1,1
COMMENTS
The rays are evenly spaced around each point. The first ray of one point goes in the opposite direction of the other point. Should a ray hit the other point, it terminates there, i.e., it is converted to a line segment.
See A338041 for illustrations.
The conjectures are true (see Fried link). - Sela Fried, Sep 21 2025
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
Sela Fried, On a polygon obtained by the intersection of two fans of rays, 2025.
Sela Fried, Proofs of Ten Conjectures from the OEIS, J. Int. Seq. 29 (2026), Article 26.1.8. See pp. 18 (Sect. 2.10), 21 (Cor. 19).
FORMULA
a(n) = (n^2 + 4*n - 1)/2, n odd; (n^2 - 2*n + 6)/2, n even (conjectured).
Conjectured by Stefano Spezia, Oct 08 2020 after Lars Blomberg: (Start)
G.f.: x*(2 + x + 3*x^2 - 5*x^3 + 3*x^4)/((1 - x)^3*(1 + x)^2).
a(n) = a(n-1) + 2*a(n-2) - 2*a(n-3) - a(n-4) + a(n-5) for n > 5. (End)
EXAMPLE
For n=1: <-----x x-----> so a(1)=2.
For n=2: <-----x<--->x-----> so a(2)=3.
MATHEMATICA
Rest@ CoefficientList[Series[x*(2 + x + 3*x^2 - 5*x^3 + 3*x^4)/((1 - x)^3*(1 + x)^2), {x, 0, 54}], x] (* Michael De Vlieger, Apr 07 2026 *)
PROG
(PARI) a(n)=if(n%2==1, (n^2 + 4*n - 1)/2, (n^2 - 2*n + 6)/2)
vector(200, n, a(n))
CROSSREFS
KEYWORD
nonn
AUTHOR
Lars Blomberg, Oct 08 2020
STATUS
approved
