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!)
A330603 a(n) = Sum_{k>=0} (k - n)^n / 2^(k + 1). 4

%I #10 Jun 12 2024 20:44:32

%S 1,0,3,-14,155,-1834,27867,-492246,10068459,-232990178,6025718963,

%T -172182404734,5387697769467,-183214963001082,6728091949444491,

%U -265348057242998822,11185888456798395563,-501937946696294628946,23886968118494957119011,-1201674025637823778926414

%N a(n) = Sum_{k>=0} (k - n)^n / 2^(k + 1).

%C The n-th term of the n-th inverse binomial transform of A000670.

%H G. C. Greubel, <a href="/A330603/b330603.txt">Table of n, a(n) for n = 0..380</a>

%F a(n) = n! * [x^n] exp(-n*x) / (2 - exp(x)).

%F a(n) = Sum_{k=0..n} binomial(n,k) * (-n)^(n - k) * A000670(k).

%F a(n) ~ (-1)^n * n^n / (2 - exp(-1)). - _Vaclav Kotesovec_, Dec 19 2019

%t Table[Sum[(k - n)^n/2^(k + 1), {k, 0, Infinity}], {n, 0, 19}]

%t Table[HurwitzLerchPhi[1/2, -n, -n]/2, {n, 0, 19}]

%t Table[n! SeriesCoefficient[Exp[-n x]/(2 - Exp[x]), {x, 0, n}], {n, 0, 19}]

%o (Magma)

%o R<x>:=PowerSeriesRing(Rationals(), 50);

%o A330603:= func< n | Coefficient(R!(Laplace( Exp(-n*x)/(2-Exp(x)) )), n) >;

%o [A330603(n): n in [0..30]]; // _G. C. Greubel_, Jun 12 2024

%o (SageMath) [factorial(n)*( exp(-n*x)/(2-exp(x)) ).series(x,n+1).list()[n] for n in (0..30)] # _G. C. Greubel_, Jun 12 2024

%Y Cf. A000670, A052841, A290219, A292916.

%K sign

%O 0,3

%A _Ilya Gutkovskiy_, Dec 19 2019

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 August 3 10:11 EDT 2024. Contains 374885 sequences. (Running on oeis4.)