login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A352306 Expansion of e.g.f. 1/(2 - exp(x) - x^2/2). 3
1, 1, 4, 19, 129, 1071, 10743, 125455, 1675439, 25167073, 420070323, 7712503173, 154475622513, 3351859639363, 78324320723561, 1960968388497523, 52368881358012435, 1485952518531483045, 44643697199669589447, 1415782273405809697009 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = binomial(n,2) * a(n-2) + Sum_{k=1..n} binomial(n,k) * a(n-k) for n > 1.
MATHEMATICA
m = 19; Range[0, m]! * CoefficientList[Series[1/(2 - Exp[x] - x^2/2), {x, 0, m}], x] (* Amiram Eldar, Mar 12 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(1/(2-exp(x)-x^2/2)))
(PARI) b(n, m) = if(n==0, 1, sum(k=1, n, (1+(k==m))*binomial(n, k)*b(n-k, m)));
a(n) = b(n, 2);
CROSSREFS
Sequence in context: A330534 A366182 A330494 * A352327 A305867 A121681
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 11 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 16:58 EDT 2024. Contains 371254 sequences. (Running on oeis4.)