If $A_c$ can be calculated as follows:
$A_c=\sum_{k=1}^{N} a_ke^{ck}$
Where c is a known real constant and $a_k$ is a known series comprising real numbers which cannot be described by a function $f(k)$ (such as noisy measurements).
If $c$ now becomes $d$, is there a way of calculating $A_d$ without having to re-evaluate the sum from k = 1 to N?
$A_d=\sum_{k=1}^{N} a_ke^{dk}$
i.e. can $A_d$ be expressed as a function $f(A_c,c,d,N)$.
I think this would mean somehow separating the coefficients from the exponential term which summation by parts can do but I'm not sure I can do this since in my case $a_k$ is not given as a function that can be differentiated.
$$\sum_{k=1}^{N} a_k(e^c)^k$$ is a polynomial in $e^c$, which you efficiently compute using Horner's scheme.
As far as I know, no interpolation method can be faster.