OFFSET
1,1
COMMENTS
Definition is better understood when viewing the linked Desmos graph.
The parity of a term is the parity of the number of intersections along the median from the base of the isosceles triangles. This is because the median is an axis of symmetry of the plane, the number of intersections not on it must be even.
LINKS
Colin Linzer, Doodle Sequence: Intersections (a Desmos graph).
FORMULA
A recursive formula for an upper bound:
a(n+1) <= (a(n)^4 - a(n)^2)/8 + (a(n) - a(n)^3)/4 which is equivalent to
a(n+1) <= binomial(binomial(a(n),2),2) (proven).
The proof of the above formula comes from the fact that if there are o points on a graph, then at most (o^2-o)/2 lines that can be drawn between them. If there are m lines on a graph, then there are at most (m^2-m)/2 intersections between them; substituting and simplifying leads to the former upper limit.
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Colin Linzer, Sep 08 2023
STATUS
approved