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!)
A357393 E.g.f. satisfies A(x) = -log(1 - x * exp(3 * A(x))). 1
0, 1, 7, 110, 2730, 93024, 4037880, 213127200, 13253058000, 948964262400, 76899763100160, 6957624460550400, 695236239163065600, 76043127767523840000, 9036546669251861760000, 1159342449440429270016000, 159708538424128885551360000, 23512778013219939149561856000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f. satisfies A(x) = log(1 + x * exp(4 * A(x))).
a(n) = Sum_{k=1..n} (3 * n)^(k-1) * |Stirling1(n,k)|.
a(n) = Sum_{k=1..n} (4 * n)^(k-1) * Stirling1(n,k).
a(n) = Product_{k=3*n+1..4*n-1} k = (4*n-1)!/(3*n)! for n > 0.
PROG
(PARI) a(n) = sum(k=1, n, (3*n)^(k-1)*abs(stirling(n, k, 1)));
(PARI) a(n) = sum(k=1, n, (4*n)^(k-1)*stirling(n, k, 1));
(PARI) a(n) = if(n==0, 0, (4*n-1)!/(3*n)!);
CROSSREFS
Cf. A357334.
Sequence in context: A303109 A101924 A171193 * A371315 A212371 A112463
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 26 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 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)