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!)
A152689 Apply partial sum operator thrice to factorials. 3

%I #14 Sep 08 2022 08:45:39

%S 0,0,0,1,4,11,28,79,284,1363,8356,61583,523924,5024179,53479148,

%T 624890431,7946278828,109195935539,1612048228564,25439293045903,

%U 427278358483556,7609502950269523,143217213477235804,2840152418116022399

%N Apply partial sum operator thrice to factorials.

%H G. C. Greubel, <a href="/A152689/b152689.txt">Table of n, a(n) for n = 0..450</a>

%H G. V. Milovanovich and A. Petojevich, <a href="http://www.math.bas.bg/infres/MathBalk/MB-16/MB-16-113-130.pdf">Generalized Factorial Functions, Numbers and Polynomials</a>, Math. Balkanica, Vol. 16 (2002), Fasc. 1-4.

%F From _G. C. Greubel_, Sep 13 2018: (Start)

%F a(n) = Sum_{j=0..(n-1)} Sum_{m=0..(j-1)} !m, where !n = Sum_{k=0..(n-1)} k! = A003422(n).

%F a(n) = ((n^2 -3*n +1) * !n - (n-2)*n! + 2*(n-1))/2.

%F a(n) = Sum_{j=0..(n-1)} ((j-1) * !j - j! + 1) = Sum_{j=0..(n-1)} A014144(n). (End)

%t With S[n_]:= Sum[k!, {k,0,n-1}];

%t Table[Sum[Sum[S[j], {j,0,m-1}], {m,0,n -1}], {n, 0, 30}] (* or *) Table[((n^2 - 3*n + 1)*S[n] - (n - 2)*n! + 2*(n - 1))/2, {n, 0, 30}] (* _G. C. Greubel_, Sep 13 2018 *)

%o (PARI) for(n=0,30, print1(((n^2-3*n+1)*sum(k=0,n-1, k!) - (n-2)*n! + 2*(n -1))/2, ", ")) \\ _G. C. Greubel_, Sep 13 2018

%o (Magma) [0] cat [((n^2 -3*n +1)*(&+[Factorial(k): k in [0..(n-1)]]) -(n-2)*Factorial(n) +2*(n-1))/2: n in [1..30]]; // _G. C. Greubel_, Sep 13 2018

%Y Cf. A152687, A014144.

%K nonn

%O 0,5

%A _Vladimir Joseph Stephan Orlovsky_, Dec 10 2008

%E Prepended zeros and changed offset by _G. C. Greubel_, Sep 13 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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)