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!)
A337061 E.g.f.: 1 / (1 + x^3/3 + log(1 - x)). 1
1, 1, 3, 12, 72, 534, 4818, 50532, 606408, 8182656, 122712912, 2024328096, 36432644400, 710346495312, 14915647605168, 335567743462944, 8052843408926976, 205328108580310656, 5543345188496499840, 157970863597032124416, 4738694884696030305024 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = a(1) = 1; a(n) = n * (a(n-1) + (n-1) * a(n-2) / 2) + Sum_{k=4..n} binomial(n,k) * (k-1)! * a(n-k).
MATHEMATICA
nmax = 20; CoefficientList[Series[1/(1 + x^3/3 + Log[1 - x]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = a[1] = 1; a[n_] := a[n] = n (a[n - 1] + (n - 1) a[n - 2]/2) + Sum[Binomial[n, k] (k - 1)! a[n - k], {k, 4, n}]; Table[a[n], {n, 0, 20}]
CROSSREFS
Sequence in context: A293138 A319948 A020530 * A147998 A052676 A054640
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 18 18:13 EDT 2024. Contains 371781 sequences. (Running on oeis4.)