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!)
A354509 a(n) = n! * Sum_{k=1..n} ( Sum_{d|k} (-1)^(d+1)/(d * (k/d)!) )/(n-k)!. 1
1, 2, 6, 5, 5, -8, 560, -5997, -14765, 176826, 5206410, -42491623, -427057527, -412183484, 147180377804, -569782989113, -8367671807033, -119681999820906, 4440973420854454, -121033449284728099, 49772248126885197, 36615485147317407728, 1696495197400394891912 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{k=1..n} A352013(k) * binomial(n,k).
E.g.f.: -exp(x) * Sum_{k>0} (-1)^k * (exp(x^k) - 1)/k.
E.g.f.: exp(x) * Sum_{k>0} log(1+x^k)/k!.
PROG
(PARI) a(n) = n!*sum(k=1, n, sumdiv(k, d, (-1)^(d+1)/(d*(k/d)!))/(n-k)!);
(PARI) a352013(n) = sumdiv(n, d, (-1)^(n/d+1)*(n-1)!/(d-1)!);
a(n) = sum(k=1, n, a352013(k)*binomial(n, k));
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(-exp(x)*sum(k=1, N, (-1)^k*(exp(x^k)-1)/k)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x)*sum(k=1, N, log(1+x^k)/k!)))
CROSSREFS
Sequence in context: A273621 A190124 A067548 * A245698 A053793 A371324
KEYWORD
sign
AUTHOR
Seiichi Manyama, Aug 15 2022
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 16 17:27 EDT 2024. Contains 372554 sequences. (Running on oeis4.)