[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A153824
Sum of proper divisors of n!: a(n) = sigma(n!) - n!.
2
0, 0, 1, 6, 36, 240, 1698, 14304, 118800, 1118160, 11705288, 144092256, 1738439808, 24817158912, 355309325280, 5378578601760, 86081749397280, 1570394279039040, 28281459220193088, 572031558109589760, 11458497230555094720
OFFSET
0,4
COMMENTS
a(n) is the sum of proper divisors of factorial number A000142(n).
LINKS
FORMULA
a(n) = A000203(n!) - n! = A062569(n) - A000142(n) = A001065(A000142(n)).
MAPLE
with(numtheory): seq(sigma(factorial(n))-factorial(n), n = 0 .. 22); # Emeric Deutsch, Jan 07 2009
MATHEMATICA
Table[DivisorSigma[1, n!] - n!, {n, 0, 50}] (* G. C. Greubel, Aug 30 2016 *)
PROG
(Magma) [DivisorSigma(1, Factorial(n)) - Factorial(n): n in [0..20]]; // Vincenzo Librandi, Aug 31 2016
(PARI) a(n) = sigma(n!) - n!; \\ Michel Marcus, Aug 31 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Jan 02 2009
EXTENSIONS
Extended by Emeric Deutsch, Jan 07 2009
STATUS
approved