A139175 a(n) = (n! - 5)/5.
23, 143, 1007, 8063, 72575, 725759, 7983359, 95800319, 1245404159, 17435658239, 261534873599, 4184557977599, 71137485619199, 1280474741145599, 24329020081766399, 486580401635327999
Offset: 5
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 5..300
Programs
-
Magma
[(Factorial(n)-5)/5: n in [5..25]]; // Vincenzo Librandi, Jul 20 2011
-
Mathematica
Table[(n! - 5)/5, {n, 5, 20}]
-
PARI
for(n=5,25, print1((n! -5)/5, ", ")) \\ G. C. Greubel, Oct 18 2018
Formula
E.g.f.: (120 - 60*x^2 - 40*x^3 - 15*x^4 + 19*x^5)/(120*(1-x)) - exp(x). - G. C. Greubel, Oct 18 2018
Extensions
Corrected offset from 4 to 5 by Vincenzo Librandi, Jul 20 2011
New name from Jon E. Schoenfield, Oct 18 2018
Comments