Is this the right way? : E(days)=0.7(1)+0.12(2)+0.072(3)+...
Yes, it is!
In other words, the sequence, expressed in days, is the following
$1 \xrightarrow{\text{with probability}} p=0.7$
$2\xrightarrow{\text{with probability}} p=0.3\times0.4$
$3\xrightarrow{\text{with probability}} p=0.3\times0.6\times0.4$
$4\xrightarrow{\text{with probability}} p=0.3\times0.6\times0.6\times0.4$
$5\xrightarrow{\text{with probability}} p=0.3\times0.6\times0.6\times0.6\times0.4$
...
$n \xrightarrow{\text{with probability}} p=0.3\times0.4\times\underbrace{0.6\times0.6\times\dots\times0.6}_{\text{(n-2) times}}$
Thus the expectation is the following
$$ \bbox[5px,border:2px solid red]
{
\mathbb{E}[X]=0.7+0.3\mathbb{E}[Y]=0.7+0.3\Bigg[1+\frac{1}{0.4}\Bigg]=1.75
\qquad (1)
}
$$
Where $Y$ is a geometric distribution with success parameter $0.4$ and starting from $k=2$
In any case, you can solve the series in an analytical way:
Setting $0.6=p$ your series becomes
$$\mathbb{E}[X]=0.7+\frac{0.3\times0.4}{0.6}\underbrace{\sum_{x=2}^{\infty}x p^{x-1}}_{=S}$$
$$S=\sum_{x=2}^{\infty}\frac{d}{dp}p^x=\frac{d}{dp}\sum_{x=2}^{\infty}p^x=\frac{d}{dp}\frac{p^2}{1-p}=\frac{p(2-p)}{(1-p)^2}\Bigg]_{p=0.6}=5.25$$
Thus
$$\mathbb{E}[X]=0.7+\frac{0.3\times0.4}{0.6}\times 5.25=1.75$$
As alreay obtained in (1).