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!)
A351891 Expansion of e.g.f. exp( sinh(sqrt(2)*x) / sqrt(2) ). 1
1, 1, 1, 3, 9, 25, 105, 443, 1969, 10609, 57265, 338547, 2190969, 14498185, 104277849, 784965803, 6150938593, 51229928929, 440694547681, 3967606065891, 37247506348905, 361022009762809, 3645855348771273, 38001754007842715, 409302848055407761, 4558828622414199121 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} binomial(n-1,2*k) * 2^k * a(n-2*k-1).
MATHEMATICA
nmax = 25; CoefficientList[Series[Exp[Sinh[Sqrt[2] x]/Sqrt[2]], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, 2 k] 2^k a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 25}]
CROSSREFS
Sequence in context: A363467 A192465 A012771 * A178061 A120284 A074440
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 24 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 May 8 07:09 EDT 2024. Contains 372319 sequences. (Running on oeis4.)