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!)
A352624 Expansion of e.g.f. exp(exp(x) + cosh(x) - 2). 2
1, 1, 3, 8, 31, 122, 579, 2886, 16139, 95358, 611111, 4128830, 29709695, 224400022, 1785322699, 14841968646, 129015458195, 1167021383902, 10979895178511, 107113768171950, 1082508179141031, 11308614423992102, 121995294474174963, 1356835055606851286, 15542964081299602811 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
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..floor(n/2)} binomial(n,2*k) * A005046(k) * A000110(n-2*k).
a(n) = Sum_{k=0..floor(n/2)} binomial(n,2*k) * A000807(k) * A003724(n-2*k).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
a(n-k)*binomial(n-1, k-1)*(2-(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] + Cosh[x] - 2], {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}]
CROSSREFS
Sequence in context: A148901 A148902 A213092 * A108492 A003470 A176304
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 May 9 08:36 EDT 2024. Contains 372346 sequences. (Running on oeis4.)