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!)
A351424 a(n) = n! * [x^n] -log(1 - f^(n-1)(x)), where f(x) = log(1+x). 3
1, 0, 3, -48, 1270, -50375, 2803829, -208616562, 20003317746, -2402323535658, 353219463307920, -62411008199372327, 13048469028962425266, -3186116313706825820802, 898478811755719496052919, -289795933163271680910773018, 106008143082108931457543700504 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = T(n,n), T(n,k) = Sum_{j=1..n} Stirling1(n,j) * T(j,k-1), k>1, T(n,1) = (n-1)!.
MAPLE
g:= x-> log(1+x):
a:= n-> n! * coeff(series(-log(1-(g@@(n-1))(x)), x, n+1), x, n):
seq(a(n), n=1..19); # Alois P. Heinz, Feb 11 2022
MATHEMATICA
T[n_, 1] := (n - 1)!; T[n_, k_] := T[n, k] = Sum[StirlingS1[n, j] * T[j, k - 1], {j, 1, n}]; a[n_] := T[n, n]; Array[a, 16] (* Amiram Eldar, Feb 11 2022 *)
PROG
(PARI) T(n, k) = if(k==1, (n-1)!, sum(j=1, n, stirling(n, j, 1)*T(j, k-1)));
a(n) = T(n, n);
CROSSREFS
Main diagonal of A351420.
Sequence in context: A365651 A320668 A319732 * A199012 A304208 A300871
KEYWORD
sign
AUTHOR
Seiichi Manyama, Feb 11 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 September 5 02:56 EDT 2024. Contains 375685 sequences. (Running on oeis4.)