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!)
A343707 a(n) = 1 + 2 * Sum_{k=0..n-1} binomial(n,k) * (n-k-1)! * a(k). 8
1, 3, 15, 113, 1145, 14539, 221663, 3943281, 80173345, 1833831619, 46606646175, 1302954958689, 39737420405753, 1312901360002283, 46714233470065999, 1780859204826798401, 72416689888874547969, 3128792006916853876291, 143132514626658326870767, 6911638338982428907738641 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp(x) / (1 + 2 * log(1 - x)).
a(n) = Sum_{k=0..n} binomial(n,k) * A088500(k).
MATHEMATICA
a[n_] := a[n] = 1 + 2 Sum[Binomial[n, k] (n - k - 1)! a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 19}]
nmax = 19; CoefficientList[Series[Exp[x]/(1 + 2 Log[1 - x]), {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) N=20; x='x+O('x^N); Vec(serlaplace(exp(x)/(1+2*log(1-x)))) \\ Seiichi Manyama, Oct 20 2021
CROSSREFS
Sequence in context: A300109 A056053 A295758 * A059849 A123853 A357794
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 26 2021
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 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)