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!)
A346974 E.g.f.: log( 1 + (exp(x) - 1)^2 / 2 ). 3
1, 3, 4, -15, -134, -357, 2374, 33645, 133186, -1288617, -24887906, -130115895, 1666879306, 40612637523, 262868197414, -4221449488635, -123802488449774, -952293015617937, 18497401668708334, 632675912865355425, 5622243546094977946, -128799294291220310997 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
FORMULA
a(n) = Stirling2(n,2) - (1/n) * Sum_{k=1..n-1} binomial(n,k) * Stirling2(n-k,2) * k * a(k).
a(n) ~ -n! * 2^(n+1) * cos(n*arctan(2*arctan(sqrt(2))/log(3))) / (n * (4*arctan(sqrt(2))^2 + log(3)^2)^(n/2)). - Vaclav Kotesovec, Aug 09 2021
MATHEMATICA
nmax = 23; CoefficientList[Series[Log[1 + (Exp[x] - 1)^2/2], {x, 0, nmax}], x] Range[0, nmax]! // Drop[#, 2] &
a[n_] := a[n] = StirlingS2[n, 2] - (1/n) Sum[Binomial[n, k] StirlingS2[n - k, 2] k a[k], {k, 1, n - 1}]; Table[a[n], {n, 2, 23}]
CROSSREFS
Sequence in context: A171061 A331869 A115752 * A354395 A103095 A041325
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Aug 09 2021
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 28 05:00 EDT 2024. Contains 372020 sequences. (Running on oeis4.)