I have a series like this one:
series = a[1][v](r-rp) + a[2][v](r-rp)^2 + O[r-rp]^3 where a[n][v] are complex coefficients of the series which are functions of v and (r-rp) is a real number. I want to Conjugate[] the series. However, Mathematica produces only (whatever I tried):
Conjugate[a[1][v](r-rp) + a[2][v](r-rp)^2 + O[r-rp]^3] while I would like to obtain:
Conjugate[a[1][v]](r-rp) + Conjugate[a[2][v]](r-rp)^2 + O[r-rp]^3 I have tried e.g. Conjugate[ComplexExpand[series,{a}]] and variations with no good.
What should I do?