A267141 Number of weeks in n! seconds, for n >= 10.
6, 66, 792, 10296, 144144, 2162160, 34594560, 588107520, 10585935360, 201132771840, 4022655436800, 84475764172800, 1858466811801600, 42744736671436800, 1025873680114483200, 25646842002862080000, 666817892074414080000
Offset: 10
Examples
For n=12, a(12) = 6*(12)!/10! = 792; interpretation: 12! seconds = 792 weeks.
Links
- Brady Haran, James Grime, 10!, Numberphile video (2012)
Crossrefs
Cf. A051431.
Programs
-
Mathematica
f[n_] := n!/(60*60*24*7); Array[f, 17, 10] (* Robert G. Wilson v, Jan 12 2016 *)
-
PARI
a(n) = 6*n!/10!; \\ Altug Alkan, Jan 12 2016
Formula
a(n) = 6*n!/10!.
a(n) = 6*A051431(n-10), for n>=10.
Comments