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

A356672
a(n) = n! * Sum_{k=0..n} k^(2*(n-k))/k!.
3
1, 1, 3, 19, 253, 5661, 188191, 8983423, 594848409, 52174034713, 5852229698971, 822684190381131, 142739480367287893, 30074750245383836149, 7575373641076070706423, 2252600759590927171373431, 783103569459739402827046321, 315587346190678252431713684913
OFFSET
0,3
FORMULA
E.g.f: Sum_{k>=0} x^k / (k! * (1 - k^2 * x)).
PROG
(PARI) a(n) = n!*sum(k=0, n, k^(2*(n-k))/k!);
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^k/(k!*(1-k^2*x)))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 22 2022
STATUS
approved