|
| |
|
|
A158121
|
|
Given n points in the complex plane, let M(n) the number of distinct Moebius transformations that take 3 distinct points to 3 distinct points. Note that the triplets may have some or all of the points in common.
|
|
0
| | |
|
|
|
OFFSET
| 3,1
|
|
|
COMMENTS
| There are (nC3)^2 ways of choosing two triplets out of n points with repetition.
There are 3! = 6 ways of mapping the points of one triplet to the other.
However, given each triplet pair, there is one case where each of the initial
three points is mapped to itself, resulting in the identity Moebius transformation.
There are nC3 cases of this, all but one redundant.
|
|
|
REFERENCES
| Michael P. Hitchman, Geometry With an Introduction to Cosmic Topology, Jones and Bartlett Publishers, 2009, pages 59-60.
|
|
|
FORMULA
| M(n) = 6*(nC3)^2 - (nC3) + 1
M(n) = 1/6(n^6-6*n^5+13*n^4-13*n^3+7*n^2-2*n+6)
|
|
|
EXAMPLE
| For n=3, M(3) = 3! = 6, since there aren't any redundancies.
For n=4, M(4) = (6*4^2) - 3 = 93, since there are 3 redundant mappings.
|
|
|
CROSSREFS
| Sequence in context: A009607 A009684 A009527 * A103212 A033935 A078103
Adjacent sequences: A158118 A158119 A158120 * A158122 A158123 A158124
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Matthew Lehman (matt.comicopia(AT)gmail.com), Mar 12 2009
|
| |
|
|