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!)
A354016 Product_{n>=1} (1 + x^n/n!)^a(n) = exp(x). 0
1, 1, -2, 9, -24, 70, -720, 5985, -39200, 337176, -3628800, 40907790, -479001600, 6128488080, -87104969952, 1318070979225, -20922789888000, 354250929192160, -6402373705728000, 121882099274319384, -2432849766865689600, 51041047393559059200 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(1) = 1; a(n) = (n-1)! * ((-1)^n + Sum_{d|n, 1 < d < n} d * (-d!)^(-n/d) * a(d)).
MATHEMATICA
nn = 22; f[x_] := Product[(1 + x^n/n!)^a[n], {n, 1, nn}]; sol = SolveAlways[0 == Series[f[x] - Exp[x], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten
a[1] = 1; a[n_] := a[n] = (n - 1)! ((-1)^n + Sum[d (-d!)^(-n/d) a[d], {d, Divisors[n] ~ Complement ~ {1, n}}]); Table[a[n], {n, 1, 22}]
CROSSREFS
Sequence in context: A351252 A275260 A248436 * A222667 A122006 A200086
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, May 14 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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)