login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A050392
Exponential reversion of Euler totient function A000010.
2
1, -1, 1, 3, -39, 257, -909, -6389, 183715, -2326009, 15050003, 140089725, -6804608381, 130909360315, -1286161585477, -12952744700713, 970148927462835, -25588194678272039, 347909302401071797
OFFSET
1,4
FORMULA
E.g.f. A(x) satisfies: A(x) = x - Sum_{k>=2} phi(k) * A(x)^k / k!. - Ilya Gutkovskiy, Apr 22 2020
MATHEMATICA
length = 20; Range[length]! InverseSeries[Sum[EulerPhi[n] x^n/n!, {n, 1, length}] + O[x]^(length+1)][[3]] (* Vladimir Reshetnikov, Nov 07 2015 *)
PROG
(PARI) seq(n)= Vec(serlaplace(serreverse(sum(k=1, n, eulerphi(k)*x^k/k!) + O(x*x^n)))); \\ Michel Marcus, Apr 21 2020
CROSSREFS
Sequence in context: A292542 A212664 A342969 * A292294 A366995 A191468
KEYWORD
sign
AUTHOR
Christian G. Bower, Nov 15 1999
STATUS
approved