login
Sum of logarithmic numbers.
(Formerly M4767 N2037)
2

%I M4767 N2037 #27 Oct 20 2023 09:39:05

%S 1,1,1,11,-7,389,-1031,19039,-24431,1023497,-4044079,225738611,

%T -1711460279,29974303501,4656373513,3798866053319,-34131041040991,

%U 2131052083901969,-23678368533941471,832900320313739227,-4752766287768240359,148482851420849206421

%N Sum of logarithmic numbers.

%D J. M. Gandhi, On logarithmic numbers, Math. Student, 31 (1963), 73-83.

%D N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H J. M. Gandhi, <a href="/A002741/a002741.pdf">On logarithmic numbers</a>, Math. Student, 31 (1963), 73-83. [Annotated scanned copy]

%H <a href="/index/Lo#logarithmic">Index entries for sequences related to logarithmic numbers</a>

%F E.g.f.: F(x)/exp(x)/x where F(x) is o.g.f. for A000005(). - _Vladeta Jovovic_, Feb 09 2003

%p A002749 := proc(r)

%p add(A260324(n,r),n=1..r+1) ;

%p end proc:

%p seq(A002749(r),r=0..25) ; # _R. J. Mathar_, Jul 24 2015

%t m = 22;

%t F[x_] = Sum[DivisorSigma[0, n] x^n , {n, 1, m}];

%t CoefficientList[F[x]/(x E^x) + O[x]^m, x] Range[0, m-1]! (* _Jean-François Alcover_, Mar 30 2020 *)

%K sign

%O 0,4

%A _N. J. A. Sloane_

%E Corrected and extended by _Jeffrey Shallit_