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!)
A352617 Expansion of e.g.f. exp( exp(x) + sinh(x) - 1 ). 3
1, 2, 5, 16, 60, 254, 1199, 6206, 34827, 210264, 1355992, 9288954, 67279309, 513149498, 4107383185, 34398823888, 300629113292, 2735356900806, 25857446103571, 253472859754918, 2572266378189583, 26981781750668760, 292136508070103208, 3260640536587635410, 37472102225288489529 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = (1/2) * Sum_{k=1..n} binomial(n-1,k-1) * (3 - (-1)^k) * a(n-k).
a(n) = Sum_{k=0..n} binomial(n,k) * A000110(k) * A003724(n-k).
a(n) = Sum_{k=0..floor(n/2)} binomial(n,2*k) * A005046(k) * A352279(n-2*k).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
a(n-k)*binomial(n-1, k-1)*(1+(k mod 2)), k=1..n))
end:
seq(a(n), n=0..24); # Alois P. Heinz, Mar 24 2022
MATHEMATICA
nmax = 24; CoefficientList[Series[Exp[Exp[x] + Sinh[x] - 1], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = (1/2) Sum[Binomial[n - 1, k - 1] (3 - (-1)^k) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 24}]
PROG
(PARI) my(x='x+O('x^30)); Vec(serlaplace(exp( exp(x) + sinh(x) - 1 ))) \\ Michel Marcus, Mar 24 2022
CROSSREFS
Sequence in context: A307771 A331826 A301306 * A332930 A000764 A205486
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 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 24 15:57 EDT 2024. Contains 371961 sequences. (Running on oeis4.)