Background: By considering the question which asks whether a certain summation-method $\mathfrak M$ for the (extremely divergent!) sum $\mathfrak M: S(z)=z + e^z + e^{e^z}+e^{e^{e^z}} + ...$ might be valid, I had the idea, that a good test for the validity of the summation-method would be to compare one result with cases, where the sum can be given on some standard way.
For instance, if $z$ is a fixpoint $p$ of $\exp(z)$ having $\exp(p)=p$ then $S(p) = p + p+ p+ p+...$ which could possibly been evaluated using the $\zeta(0)$ - definition.
But this is possibly no good test, a better one were, if for instance $p$ were a $2$- periodic point where the sign changes, (let's denote a fixpoint $p_1$ and a $2$-periodic point $p_2$) such that $\exp(p_2)=-p_2$ and the series becomes $S(p_2)=p_2 - p_2 + p_2 - ... + ...$ which can then be assumed to be the Cesarosum of the alternating series of a constant.
First steps of my own approach: This led to the idea to find such $2-periodic$ points to have example cases. What I've done so far was to screen segments of the complex plane , say a square around some $z_0$ of size $2x2$ in steps of $1/10$ and find local minima. Then take each local minima of the error ($|z_0 - e^{e^z}|$ as new center of a new square with $0.2 x 0.2$ size, and iterate this two or three times until the error is small enough and then use Newton-iteration to finally find a point $p_2$ (hopefully meeting the requirements for Cesaro-summability!).
This gave by tedious manual screening an initial set of $2$-periodic points. But all so far found $2$-periodic points were on the real-positive halfplane and so not suited for Cesaro-summation of $S(p_2)=p_2-p_2+p_2-...$ with alternating signs.
Here is a picture which included a couple more points which I found by extrapolating linear trends in subsets of the found ones. See my initial answer here
Question 1:
So my first question is now for ideas,
- 1) how could I improve the search-routine? (Perhaps avoiding that manual screening at all)
The extrapolation-idea is very useful and allows to find infinitely many more $2$-periodic points completely automatically, but it still needs an initial manual screening to get at least $3$ points as germ for the extrapolation.
Question 2:
The picture contain no pairs of $2$-periodic points having alternating signs on the real part.
I've tried to find analytically better solutions, of to even prove there are no such points, but arrived nowhere definite so far.
- 2) Are there really no $2$-periodic points with negative real part?
Question 3 & 4:
If there are indeed no such cases, what about $3$-periodic points or in general $n$-periodic points?
- 3) Are there $n$-periodic points with negative real part?
- 4) Is there any analytical method known how to find $n$-periodic points without manual screening? (For the finding of $1$-periodic (or "fix"-) points we have the Lambert W-function. For generalizing the Lambert W I had found a scheme giving power series, but which have extremely small range of convergence and I think are thus useless here)
update: an update on the Pari/GP routine, few textual improvements
I've got a sudden enlightenment which seems to solve the problem completely.
The key here is, that on one hand the fixed- and periodic points of $\exp(z)$ are all repelling (this was also mentioned/proved in an article of Shen/Rempe-Gillen, pg 1, see reference below), and on the other hand the one single fixed point of $\log(z)$ is nicely attracting, but it is only a singular occurence.
$1$-periodic points/fixed points
Well, further fixed points can be found by using branches of the $\log()$, say $$ \text{lb}(z,k) = \log(z) + k \cdot C \qquad \text{where } C = i 2 \pi$$ We may then have for some $p_1 = p_1' + C $ the equality $$ \exp(p_1) = p_1 = p_1' + C = \exp (p_1'+ C) $$ and on the other hand the inverse relation $$ \text{lb} (p_1,1) = p_1'+ C = \text{lb}(p_1'+C,1)$$
Noticing this we can exploit the attractive property of the (iterated) logarithmizing to converge from some initial value to the desired fixpoint, say from $z=1+I$ to some $p_1$ .
Example:
From where we can now use the Newton-iteration to get even quadratic convergence rate and then find the arbitrary well approximated value of the desired fixed point $\exp(z)=z$
Using the $k$'th multiple of the constant $C=i2\pi$ we can now find (and index) the (infinitely many) complex fixed points ($1$-periodic): $$ p_1 = \text{lb}(p_1,k) \to \exp(p_1)=p_1$$ Another example:
2-periodic points
That procedere for finding $1$-periodic points is of course well known. For the finding of $1$-periodic (or: fixed-) points we have also the LambertW-function and their branching behaviour for even an immediate solution. But none such function is known for the $n$-periodic points for $n\ge 2$. Thus we have to find our own procedure now...
For that search of $2$-periodic fixpoints I'll not go to explain the formulae in detail (it is trivial but too tedious for this answer-box), but I simply state that for the search for a solution to $$ \exp(\exp(p_2) ) = p_2 \ne \exp(p_2) $$ it suffices to use -instead of the iterated exponential-function- the iterated branched logarithm-function, where the branch-index is allowed/required to change between the two steps of iteration:
$$ p_2 = \text{lb}( \text{lb}(p_2,k_0),k_1) $$
Initialize arbitrarily, iterate and, if desired, refine using the Newton-iteration on the $\exp(\exp())$ function.
Example:
We have now:
which is indeed a $2$-periodic point.
It is meaningful now, to simplify the notation for finding $2$-periodic points. Just let us use a vectorial notation for the two branch-indexes and write $$ p_2 = \text{Find}([k_1,k_2]) $$ implemented as Pari/GP-function (Pseudocode)
Update A better routine, which also employs the Newton-iteration on the branched iterated logarithm (instead on iterated exponentiation):
end update
Using $Find([k_1,k_2])$ for $k_1=-3..3$ and $k_2=0..12$ I get the following chart of $1$- and $2$-periodic points (they are $1$-periodic when $k_1=k_2$) where the first parameter $k_1$ controls the color:

To see the $2$-periodicities, below is the same picture whith the pairs of periodic points connected by straight lines:
It is worth to note, that $2$-periodic points of the form $\text{Find}([k,-k])$ give pairs of complex conjugate numbers (big red diamonds), while $\text{Find}([k,k]) (=\text{Find}([k]))$ give $1$-periodic points (big brown circles). Note moreover that the $1$-periodic and the conjugate $2$-periodic points lay asymptotically on an (exponential) curve which can be seen, when the scale of the imaginary axis is taken as logarithmic (or even better transformed to $\sinh^{-1}()$ to see also the numbers with negative imaginary component ).
3-,4-,5-,... n-periodic points
If we extend the $\text{Find}([...])$ function to $3,4,5,...n$ entries $\in \mathbb Z$ in the vector-argument we find easily any $n$-periodic point which we like. $\text{Find}([0,0,1])$,$\text{Find}([0,0,-1])$,$\text{Find}([0,0,2])$,...$\text{Find}([0,1,1])$ ...
Finally $\text{Find}([k_1,k_2,k_3])$ with $k_1,k_2,k_3 \in \mathbb Z$ give all $3$-periodic points, and in case $k_1=k_2=k_3$ the $1$-periodic fixed points and in case $k_1=k_2=k_3=0$ the primary fixed point of the $\log()$-function. Unfortunately, as Y. Galidakis pointed out in his answer, the Newton-iteration for higher iterates of the $\exp()$ gets more&more involved; numerical checks up to $n=63$ and $20$ iterations in the $\text{Find}([...])$-function however looked very promising but are still under consideration.
See here some picture for examples for $n=3$,$n=5$,$n=11$,$n=31$ - periodic points.
I have shown only one exemplar because the overlay of more exemplars of the shape-family makes the picture too chaotic
Here I show 4 exemplars of a very special shape-family by keeping all but one of the vectorial arguments to zero: $$\text{Find}([0,0,...,0,k_{31}])$$ which produces the natural iteration-map for the $\log()$ for $30$ steps and then in one step adds $k_{31} \cdot C$ .

Of course, this typical shape-family exists analoguously for all $n$-periodic points.
Remark
This scheme, if it is really exhausting (what seems obvious to me), gives nice intuition in more general statements about the nature of the set-of-periodic points of the exponential function.
The number of $2$-periodic fixpoints is then that of $\mathbb Z^2$. All of them can be indexed like the rational numbers by a pair of 2 integer indexes.
The number of $n$-periodic fixpoints is then that of $\mathbb Z^n$. Indexing as before, but with $n$-tuple of integer indexes.
If I understand the topological concept of "dense subset" correctly it is immediately obvious, that the set of $n$-periodic points is "dense" (Shen/Rempe-Gillen give a reference to a proof)
Because there is so far no reason to assume that some class of $n$-periodic points might be missing/impossible, this answers one doubt in Galidakis' answer, by here claiming that $n$-periodic point for all $n$ exist and there are $\mathbb Z^n$ of them.(See also Shen/Rempe-Gillen, Theorem 1.1)
I don't know yet, whether it shall be possible to find, for instance for the $2$-periodic points, a simpler analytical description than this of the iterated branched logarithms, for instance by a parametrical definition of the curves on which that points lay, for instance to prove the exhaustiveness of my method for the set of 2-periodic orbits/points.
Shen, Zhaiming; Rempe-Gillen, Lasse, The exponential map is chaotic: an invitation to transcendental dynamics, Am. Math. Mon. 122, No. 10, 919-940 (2015). ZBL1361.37002.
Update: an article which deals with the question of $p_1$ (fixed-) points on the braches of the $\log()$-function is by Stanislav Sykora (2016) at his web-space here . Don't know really whether the exposition can be used at least as proof for the questions whether the set of fixed points $p_1$ found by this method here is really exhaustive, though.