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

A371299
E.g.f. satisfies A(x) = 1/(1 + log(1 - 2*x*A(x)^2) / 2).
0
1, 1, 8, 128, 3128, 103464, 4327376, 219132416, 13037220864, 891482661120, 68898795919872, 5939542370104320, 565085390314014720, 58814874313859198976, 6647869870080852418560, 810941992663677532667904, 106188636284967568536207360, 14856670240947944840012857344
OFFSET
0,3
FORMULA
a(n) = (1/(2*n+1)!) * Sum_{k=0..n} 2^(n-k) * (2*n+k)! * |Stirling1(n,k)|.
PROG
(PARI) a(n) = sum(k=0, n, 2^(n-k)*(2*n+k)!*abs(stirling(n, k, 1)))/(2*n+1)!;
CROSSREFS
Cf. A371297.
Sequence in context: A237023 A156270 A051189 * A113135 A356972 A219264
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 18 2024
STATUS
approved