The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A352280 a(0) = 1; a(n) = 3 * Sum_{k=0..floor((n-1)/2)} binomial(n-1,2*k) * a(n-2*k-1). 3
1, 3, 9, 30, 117, 516, 2493, 13152, 75177, 460272, 3003921, 20806176, 152114013, 1169842368, 9435180357, 79553524224, 699531782481, 6400932102912, 60820145019801, 599036357936640, 6105903392066373, 64309189153428480, 698936466350352717, 7828833281592926208, 90270159223293364473 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp( 3 * sinh(x) ).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = 3 Sum[Binomial[n - 1, 2 k] a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 24}]
nmax = 24; CoefficientList[Series[Exp[3 Sinh[x]], {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(3*sinh(x)))) \\ Seiichi Manyama, Mar 26 2022
CROSSREFS
Sequence in context: A354120 A091353 A279199 * A292758 A297198 A297202
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 14 09:42 EDT 2024. Contains 372532 sequences. (Running on oeis4.)