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!)
A336183 a(n) = n^2 + (1/n) * Sum_{k=1..n-1} binomial(n,k) * k * a(k) * (n-k)^2. 1
1, 5, 23, 154, 1389, 15636, 211231, 3329264, 59969097, 1215233380, 27362096211, 677690995488, 18310602210445, 535964033279780, 16894811428737495, 570603293774677696, 20556251540382371217, 786832900592755991364, 31889277719673937849243, 1364231113649221829763200 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f.: -log(1 - exp(x) * x * (1 + x)).
E.g.f.: -log(1 - Sum_{k>=1} k^2 * x^k / k!).
a(n) ~ (n-1)! / r^n, where r = A201941 = 0.444130228823966590585466329490984667... is the root of the equation exp(r)*r*(1+r) = 1. - Vaclav Kotesovec, Jul 11 2020
MATHEMATICA
a[n_] := a[n] = n^2 + (1/n) Sum[Binomial[n, k] k a[k] (n - k)^2, {k, 1, n - 1}]; Table[a[n], {n, 1, 20}]
nmax = 20; CoefficientList[Series[-Log[1 - Exp[x] x (1 + x)], {x, 0, nmax}], x] Range[0, nmax]! // Rest
CROSSREFS
Sequence in context: A233568 A157306 A306185 * A342196 A228851 A308362
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 10 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 26 04:03 EDT 2024. Contains 371989 sequences. (Running on oeis4.)