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!)
A277506 E.g.f.: 1/((1+LambertW(-x))*(1-x)). 9
1, 2, 8, 51, 460, 5425, 79206, 1377985, 27801096, 637630353, 16376303530, 465451009441, 14501512561548, 491394769892377, 17991533604051294, 707766894441628785, 29771014384775612176, 1333347506427522171169, 63346663190991936656466, 3182006256289160385596833 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
For n > 0, a(n) = n! + Sum_{k=1..n} binomial(n,k) * k^k * (n-k)!.
a(n) ~ n^n / (1-exp(-1)).
a(n) = n*a(n-1) + n^n, a(0) = 1. - Alois P. Heinz, May 12 2021
MAPLE
a:= proc(n) a(n):= n*a(n-1) + n^n end: a(0):= 1:
seq(a(n), n=0..23); # Alois P. Heinz, May 12 2021
MATHEMATICA
CoefficientList[Series[1/(1+LambertW[-x])/(1-x), {x, 0, 20}], x] * Range[0, 20]!
Flatten[{1, Table[n! + Sum[Binomial[n, k]*k^k*(n-k)!, {k, 1, n}], {n, 1, 20}]}]
PROG
(PARI) x='x+O('x^50); Vec(serlaplace(1/((1 + lambertw(-x))*(1-x)))) \\ G. C. Greubel, Nov 12 2017
CROSSREFS
Cf. A277507.
Sequence in context: A352271 A352147 A351772 * A059429 A249747 A191480
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 18 2016
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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)