I've been investigating a sequence implicitly defined by Buckminster Fuller's Synergetics (although I've cleaned up the construction and dropped the proto-sacred geometry angle). It's defined by an iterated construction of great circles on a sphere. Fuller computed the first 3-5 terms (depending on how you count them), but to my knowledge, no one has tried to extend it further.
The way I prefer to construct it, you start with the icosahedral symmetry group. This group can be represented by reflections across 15 great circles like these, so a(1)=15:
These 15 great circles intersect at 62 points. If you rotate the sphere around each of these points, you can draw 31 great circles along their equators (including the original 15), so we have a(2)=31:
Fuller actually called these the "primary great circles," and he constructed them by rotating an icosahedron around its vertices, edge midpoints, and face centers, but you can equally construct them just from the 15 mirror planes.
You then repeat the process. These 31 great circles intersect at 242 points, so they can be used to draw 121 great circles (again including the previous steps), and a(3)=121. Fuller called the new circles "secondary great circles":
There's no indication that Fuller or anyone else continued the construction to "tertiary great circles," but if you count up the number of intersections in each fundamental triangle, you find that a(4)=2431.
This sequence obviously grows very fast, since a(n+1) is on the order of a(n)^2. I wrote a Python script that verified a(2), a(3), and a(4) and computed a(5)=1286101. I believe it could compute a(6) in about 500 core-hours of runtime, but I'm hoping someone can check my work before I invest that kind of time/money.
Questions:
1. Has this construction been studied in any other context? (It's definitely not in the OEIS.)
2. Might there be a formula that can compute the terms directly rather than finding every intersection point?
3. Would it be more appropriate to use Fuller's definition where a(1)=31, or my definition where a(1)=15? Or alternatively, the 15 mirror planes can be generated by a subset of 6, so you could have a(1)=6 instead. (If you try to push it back another step, you're back to 15.)
4. Is anyone interested in checking my script and my computation of a(5)?
Finally, note that similar sequences can be constructed for other symmetry groups. Fuller himself explored octahedral symmetry, but he applied a different construction in the first step, so there's no prior literature there.