cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A267141 Number of weeks in n! seconds, for n >= 10.

Original entry on oeis.org

6, 66, 792, 10296, 144144, 2162160, 34594560, 588107520, 10585935360, 201132771840, 4022655436800, 84475764172800, 1858466811801600, 42744736671436800, 1025873680114483200, 25646842002862080000, 666817892074414080000
Offset: 10

Views

Author

Richard H. Sweetman, Jan 10 2016

Keywords

Comments

10! seconds = 6 weeks (exactly)
11! seconds = 66 weeks (exactly)
12! seconds = 792 weeks (exactly), etc.
Demonstration of first term:
6 w * 7 d/w * 24 h/d * 60 m/h * 60 s/m = seconds in 6 weeks =
(2*3)*(1*7) *(3*8) * (6*10) * (3*5*4) =
1*2*3*4*5*6*7*8*(3^2)*10 = 10! seconds

Examples

			For n=12, a(12) = 6*(12)!/10! = 792; interpretation: 12! seconds = 792 weeks.
		

Crossrefs

Cf. A051431.

Programs

Formula

a(n) = 6*n!/10!.
a(n) = 6*A051431(n-10), for n>=10.