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!)
A352326 Expansion of e.g.f.: 1/(2 - exp(x) - sinh(x)). 3
1, 2, 9, 62, 567, 6482, 88929, 1423382, 26037027, 535813802, 12251630349, 308153112302, 8455276083087, 251333936555522, 8045613346221369, 275950004166050822, 10095559110771678747, 392427366313299119642, 16151459739717643489989 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} (3-(-1)^k)/2 * binomial(n,k) * a(n-k).
a(n) ~ n! / (sqrt(7) * log((2 + sqrt(7))/3)^(n+1)). - Vaclav Kotesovec, Mar 12 2022
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
a(n-k)*binomial(n, k)*(1+(k mod 2)), k=1..n))
end:
seq(a(n), n=0..18); # Alois P. Heinz, Mar 25 2022
MATHEMATICA
m = 18; Range[0, m]! * CoefficientList[Series[1/(2 - Exp[x] - Sinh[x]), {x, 0, m}], x] (* Amiram Eldar, Mar 12 2022 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(2-exp(x)-sinh(x))))
(PARI) a(n) = if(n==0, 1, sum(k=1, n, (3-(-1)^k)/2*binomial(n, k)*a(n-k)));
CROSSREFS
Sequence in context: A146887 A173498 A113662 * A052820 A213528 A100262
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 12 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 24 17:20 EDT 2024. Contains 371962 sequences. (Running on oeis4.)