The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A318811 Expansion of e.g.f. exp(Sum_{k>=1} phi(k)*x^k), where phi is the Euler totient function A000010. 3
1, 1, 3, 19, 121, 1161, 9931, 124363, 1542129, 21594961, 335083411, 5712781251, 104044684393, 2036445474649, 42781075481691, 943820382272251, 22433542236603361, 556276331238284193, 14612462927067954979, 401110580118493111411, 11553483337639043003481 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Totient Function.
FORMULA
a(n) ~ 2^(1/3) * exp(1/6 + 3^(4/3) * n^(2/3) / (2^(1/3) * Pi^(2/3)) - n) * n^(n - 1/6) / (3*Pi)^(1/3).
a(0) = 1; a(n) = (n-1)! * Sum_{k=1..n} k * phi(k) * a(n-k)/(n-k)!. - Seiichi Manyama, Apr 07 2022
MATHEMATICA
nmax = 25; CoefficientList[Series[Exp[Sum[EulerPhi[k]*x^k, {k, 1, nmax}]], {x, 0, nmax}], x] * Range[0, nmax]!
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, eulerphi(k)*x^k)))) \\ Seiichi Manyama, Apr 07 2022
(PARI) a(n) = if(n==0, 1, (n-1)!*sum(k=1, n, k*eulerphi(k)*a(n-k)/(n-k)!)); \\ Seiichi Manyama, Apr 07 2022
CROSSREFS
Sequence in context: A294253 A293840 A327674 * A352299 A074572 A157455
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Sep 04 2018
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 May 20 03:57 EDT 2024. Contains 372703 sequences. (Running on oeis4.)