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!)
A331616 E.g.f.: exp(1 / (1 - arcsinh(x)) - 1). 4
1, 1, 3, 12, 61, 380, 2783, 23240, 217817, 2267472, 25924827, 322257408, 4325450325, 62374428480, 961296291447, 15754664717184, 273537984529713, 5016337928401152, 96871316157146163, 1964030207217042432, 41706446669511523821, 925774982414999202816 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(257) is negative. - Vaclav Kotesovec, Jan 26 2020
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n-1,k-1) * A296675(k) * a(n-k).
a(n) ~ 8*(-4*Pi*cos(Pi*(n - 4/(4 + Pi^2))/2) - (Pi^2 - 4)*sin(Pi*(n - 4/(4 + Pi^2))/2)) * n^(n-1) / ((4 + Pi^2)^2 * exp(n + 1 - 4/(4 + Pi^2))). - Vaclav Kotesovec, Jan 26 2020
MATHEMATICA
nmax = 21; CoefficientList[Series[Exp[1/(1 - ArcSinh[x]) - 1], {x, 0, nmax}], x] Range[0, nmax]!
A296675[0] = 1; A296675[n_] := A296675[n] = Sum[Binomial[n, k] If[OddQ[k], (-1)^Boole[IntegerQ[(k + 1)/4]] ((k - 2)!!)^2, 0] A296675[n - k], {k, 1, n}]; a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, k - 1] A296675[k] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 21}]
PROG
(PARI) seq(n)={Vec(serlaplace(exp(1/(1 - asinh(x + O(x*x^n))) - 1)))} \\ Andrew Howroyd, Jan 22 2020
CROSSREFS
Sequence in context: A235802 A317169 A121694 * A158691 A365299 A038171
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jan 22 2020
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 19 04:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)