login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A328053 Expansion of e.g.f. log(1 + Sum_{k>=1} phi(k) * x^k / k!), where phi = Euler totient function (A000010). 1
0, 1, 0, 1, -3, 8, -32, 166, -926, 5842, -42812, 348632, -3088388, 29871372, -314102574, 3554714938, -43057252520, 556487433400, -7644034688586, 111160926400032, -1706191876272876, 27567942738717360, -467712309003533398, 8312805777830133096 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Logarithmic transform of A000010.
LINKS
FORMULA
a(n)/n! ~ -(-1)^n * d^n / n, where d = 0.8078801380543809482705136550646927880437760099284517780830096910529492372472... - Vaclav Kotesovec, Oct 17 2019
MAPLE
a:= proc(n) option remember; `if`(n=0, 0, (b-> b(n)-add(a(j)
*binomial(n, j)*j*b(n-j), j=1..n-1)/n)(numtheory[phi]))
end:
seq(a(n), n=0..25); # Alois P. Heinz, Oct 06 2019
MATHEMATICA
nmax = 23; CoefficientList[Series[Log[1 + Sum[EulerPhi[k] x^k/k!, {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = EulerPhi[n] - Sum[Binomial[n, k] EulerPhi[n - k] k a[k], {k, 1, n - 1}]/n; a[0] = 0; Table[a[n], {n, 0, 23}]
CROSSREFS
Sequence in context: A009438 A321520 A321522 * A258690 A091831 A284963
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Oct 03 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 14 20:23 EDT 2024. Contains 375929 sequences. (Running on oeis4.)