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”).

A289945
a(n) = Sum_{k=1..n} k!^4.
8
1, 17, 1313, 333089, 207693089, 268946253089, 645510228813089, 2643553803594573089, 17342764866576345933089, 173418555892594089945933089, 2538940579958951120707545933089, 52646414799433780559063261145933089
OFFSET
1,2
COMMENTS
The only prime in this sequence is a(2) = 17 since a(n) is divisible by 13 for n >= 12 and there are no other primes with n < 12.
LINKS
Eric Weisstein's World of Mathematics, Factorial Sums
MATHEMATICA
Table[Sum[k!^4, {k, n}], {n, 12}]
Accumulate[(Range[15]!)^4] (* Harvey P. Dale, Jul 12 2019 *)
PROG
(PARI) a(n) = sum(k=1, n, k!^4); \\ Michel Marcus, Jul 16 2017
CROSSREFS
Cf. A007489 (k!), A104344 (k!^2), A289946 (k!^6).
Sequence in context: A348598 A188717 A266866 * A128542 A316746 A067409
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Jul 16 2017
STATUS
approved