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!)
A352279 a(0) = 1; a(n) = 2 * Sum_{k=0..floor((n-1)/2)} binomial(n-1,2*k) * a(n-2*k-1). 4
1, 2, 4, 10, 32, 114, 448, 1978, 9472, 48738, 270336, 1595114, 9965568, 65852882, 457326592, 3329243546, 25356271616, 201326396098, 1663597019136, 14279558011850, 127044810702848, 1170023757062450, 11136610150121472, 109395885009537402, 1107781178494025728, 11549900930966957346 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp( 2 * sinh(x) ).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = 2 Sum[Binomial[n - 1, 2 k] a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 25}]
nmax = 25; CoefficientList[Series[Exp[2 Sinh[x]], {x, 0, nmax}], x] Range[0, nmax]!
Table[Sum[(-1)^k * Binomial[n, k] * BellB[k, -1] * BellB[n-k], {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jun 27 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(2*sinh(x)))) \\ Seiichi Manyama, Mar 26 2022
CROSSREFS
Sequence in context: A365516 A336614 A071954 * A120017 A000736 A263663
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 10 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 12 15:25 EDT 2024. Contains 372482 sequences. (Running on oeis4.)