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”).

A370084
Expansion of e.g.f. exp( Sum_{k>=1} (2*k)! * (x/2)^k/k ).
2
1, 1, 7, 199, 15985, 2810401, 916442551, 497173378087, 416055798439009, 508038355486018945, 867346995542879712871, 2001283948891590010467271, 6070787760933663329315253457, 23660956435620796919900079644449
OFFSET
0,3
FORMULA
a(0) = 1; a(n) = (n-1)! * Sum_{k=1..n} (2*k)! * a(n-k) / (2^k * (n-k)!).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, (2*k)!*(x/2)^k/k))))
CROSSREFS
Cf. A370086.
Sequence in context: A206473 A376461 A300616 * A178319 A202943 A355088
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 08 2024
STATUS
approved