login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A367078
E.g.f. satisfies A(x) = 1 + log(1 + x*A(x)^2).
3
1, 1, 3, 14, 82, 514, 2508, -12328, -820752, -22232232, -498433320, -9865850688, -159373484448, -1136343398880, 65056426313760, 4663237803223680, 210535052582008320, 7821007002377349120, 242387957802121971840, 5333182310844833642496
OFFSET
0,3
FORMULA
a(n) = (2*n)! * Sum_{k=0..n} Stirling1(n,k)/(2*n-k+1)!.
PROG
(PARI) a(n) = (2*n)!*sum(k=0, n, stirling(n, k, 1)/(2*n-k+1)!);
CROSSREFS
KEYWORD
sign
AUTHOR
Seiichi Manyama, Nov 07 2023
STATUS
approved