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!)
A300490 Expansion of e.g.f. -exp(-x)*log(1 - x)/(1 - x). 3

%I #13 Mar 30 2022 12:05:59

%S 0,1,1,5,20,109,689,5053,42048,391641,4036697,45618341,560889988,

%T 7454314789,106488455033,1627269878557,26487441519584,457532446622001,

%U 8359188190686609,161056273132588933,3263644496701880404,69389030027882288861,1544501472271318499105

%N Expansion of e.g.f. -exp(-x)*log(1 - x)/(1 - x).

%C Inverse binomial transform A000254.

%H Alois P. Heinz, <a href="/A300490/b300490.txt">Table of n, a(n) for n = 0..450</a>

%H N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>

%F a(n) = Sum_{k=1..n} (-1)^(n-k)*binomial(n,k)*k!*H(k), where H(k) is the k-th harmonic number.

%F a(n) ~ n! * (log(n) + gamma) / exp(1), where gamma is the Euler-Mascheroni constant A001620. - _Vaclav Kotesovec_, Jun 23 2018

%F Recurrence: a(0) = 0, a(1) = 1, a(2) = 1, a(3) = 5, a(n+4) = (2*n+5)*a(n+3) - (n^2+2*n-1)*a(n+2) - (2*n+3)*(n+2)*a(n+1) - (n+2)*(n+1)*a(n). - _Vladimir Reshetnikov_, Mar 30 2022

%e -exp(-x)*log(1 - x)/(1 - x) = x/1! + x^2/2! + 5*x^3/3! + 20*x^4/4! + 109*x^5/5! + 689*x^6/6! + 5053*x^7/7! + ...

%p b:= proc(n) option remember; `if`(n<2, n, n*b(n-1)+(n-1)!) end:

%p a:= proc(n) add(b(k)*(-1)^(n-k)*binomial(n, k), k=0..n) end:

%p seq(a(n), n=0..25); # _Alois P. Heinz_, Mar 07 2018

%t nmax = 22; CoefficientList[Series[-Exp[-x] Log[1 - x]/(1 - x), {x, 0, nmax}], x] Range[0, nmax]!

%t Table[Sum[(-1)^(n - k) Binomial[n,k] k! HarmonicNumber[k], {k, 1, n}], {n, 0, 22}]

%t a[0] = 0; a[1] = a[2] = 1; a[3] = 5; a[n_Integer] := a[n] = (2 n - 3) a[n - 1] - (n^2 - 6 n + 7) a[n - 2] - (n - 2) (2 n - 5) a[n - 3] - (n - 3) (n - 2) a[n - 4]; Table[a[n], {n, 0, 22}] (* _Vladimir Reshetnikov_, Mar 30 2022 *)

%Y Cf. A000254, A073596.

%K nonn

%O 0,4

%A _Ilya Gutkovskiy_, Mar 07 2018

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 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)