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!)
A355285 Expansion of e.g.f. 1 / (1 + x + x^2/2 + x^3/3 + log(1 - x)). 1
1, 0, 0, 0, 6, 24, 120, 720, 7560, 76608, 810432, 9141120, 118015920, 1666336320, 25211774016, 404932155264, 6951992261760, 127203705538560, 2467434718218240, 50477473338494976, 1086707769452699904, 24573149993692615680, 582367494447600583680, 14430857455114783119360 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
E.g.f.: 1 / (1 - Sum_{k>=4} x^k/k).
a(0) = 1; a(n) = Sum_{k=4..n} binomial(n,k) * (k-1)! * a(n-k).
MATHEMATICA
nmax = 23; CoefficientList[Series[1/(1 + x + x^2/2 + x^3/3 + Log[1 - x]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k] (k - 1)! a[n - k], {k, 4, n}]; Table[a[n], {n, 0, 23}]
PROG
(PARI) my(x='x+O('x^30)); Vec(serlaplace(1/(1 + x + x^2/2 + x^3/3 + log(1 - x)))) \\ Michel Marcus, Jun 27 2022
CROSSREFS
Sequence in context: A293300 A293487 A047865 * A182083 A293049 A293123
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 26 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 July 20 20:43 EDT 2024. Contains 374459 sequences. (Running on oeis4.)