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!)
A351892 Expansion of e.g.f. exp( sinh(sqrt(3)*x) / sqrt(3) ). 1
1, 1, 1, 4, 13, 40, 205, 952, 4921, 31168, 189145, 1318528, 9843781, 74869888, 632536933, 5475991552, 49996774897, 485393809408, 4829958877105, 50858117779456, 554544498995965, 6259096187060224, 73822470722135293, 894846287081242624, 11261265009125680681, 146272258394568687616 (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) * 3^k * a(n-2*k-1).
MATHEMATICA
nmax = 25; CoefficientList[Series[Exp[Sinh[Sqrt[3] x]/Sqrt[3]], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, 2 k] 3^k a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 25}]
CROSSREFS
Sequence in context: A149424 A097112 A222270 * A213496 A220926 A077284
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 April 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)