|
| |
|
|
A092143
|
|
Cumulative product of all divisors of 1..n.
|
|
6
| |
|
|
1, 2, 6, 48, 240, 8640, 60480, 3870720, 104509440, 10450944000, 114960384000, 198651543552000, 2582470066176000, 506164132970496000, 113886929918361600000, 116620216236402278400000
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| Let p be a prime and let ordp(n,p) denote the exponent of the largest power of p which divides n. For example, ordp(48,2)=4 since 48=3*(2^4). Let b(n)=A006218(n)=sum_{k=1..n} floor(n/k). The prime factorization of a(n) appears to be given by the following conjectural formula: ordp(a(n),p)= b(floor(n/p))+ b(floor(n/p^2))+ b(floor(n/p^3))+ . . .. Compare with the comments in A129365. - Peter Bala (pbala(AT)toucansurf.com), Apr 15 2007
Mingarelli proved that the sum of the reciprocals of a(n) ~ 2.69179920 is irrational. - Jonathan Vos Post (jvospost3(AT)gmail.com), May 31 2007
|
|
|
LINKS
| Angelo B. Mingarelli, Abstract factorials of arbitrary sets of integers, May 29 2007.
|
|
|
FORMULA
| a(n) = product_{k=1..n} {floor(n/k)}!. This formula is due to Sebastian Martin Ruiz. - Peter Bala (pbala(AT)toucansurf.com), Apr 15 2007. Formula corrected by R. J. Mathar, May 06 2008.
|
|
|
EXAMPLE
| a(6) = 1.2.3.2.4.5.2.3.6 = 8640.
|
|
|
PROG
| (PARI) z=1; for(i=1, 20, fordiv(i, j, z*=j); print1(", "z))
|
|
|
CROSSREFS
| Cf. A129364, A129365, A129439.
Sequence in context: A052614 A052688 A052657 * A052593 A052586 A052554
Adjacent sequences: A092140 A092141 A092142 * A092144 A092145 A092146
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Jon Perry (perry(AT)globalnet.co.uk), Mar 31 2004
|
| |
|
|