login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A201197
E.g.f A(x) satisfies A(x) = 1 + sinh(x)*A(sinh(x)).
0
1, 1, 2, 7, 36, 241, 2038, 21113, 259416, 3711889, 60941194, 1132624593, 23584844132, 545415797577, 13900638671182, 387909856253257, 11785121609470896, 387841948278314657, 13764450667964758290, 524703399684950744353, 21407375104944503282620
OFFSET
0,3
FORMULA
a(n) = sum(k=1..n, (a(k-1)/(k-1)!*sum((-1)^i * (k-2*i)^n * binomial(k,i), i,0,k))/2^k), a(0)=1.
PROG
(Maxima)
a(n):=if n=0 then 1 else sum((a(k-1)/(k-1)!*sum((-1)^i*(k-2*i)^n*binomial(k, i), i, 0, k))/2^k, k, 1, n);
CROSSREFS
Sequence in context: A088715 A373773 A088313 * A185754 A191493 A095793
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, Nov 28 2011
STATUS
approved