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!)
A337058 E.g.f.: 1 / (2 + x^2/2 - exp(x)). 8
1, 1, 2, 7, 33, 191, 1323, 10711, 99151, 1032385, 11943003, 151979213, 2109829857, 31730171539, 513903517585, 8917723105003, 165065061436755, 3246274767649637, 67598797715175999, 1485845872704318265, 34378343609138619685, 835190283258080561671 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = n * a(n-1) + Sum_{k=3..n} binomial(n,k) * a(n-k).
MATHEMATICA
nmax = 21; CoefficientList[Series[1/(2 + x^2/2 - Exp[x]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = n a[n - 1] + Sum[Binomial[n, k] a[n - k], {k, 3, n}]; Table[a[n], {n, 0, 21}]
CROSSREFS
Sequence in context: A104981 A058797 A121965 * A006595 A179525 A217033
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 13 2020
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 April 24 13:49 EDT 2024. Contains 371958 sequences. (Running on oeis4.)