|
| |
|
|
A094336
|
|
Product of next n numbers divided by the largest factorial divisor.
|
|
0
| |
|
|
1, 1, 1, 1, 3003, 969, 16445, 30566, 886163135, 2658968130, 491796152, 3340843549855, 9129919051926, 22487406253165, 17391629252325717, 2248272948937235, 15415916972482007401455, 50848495433999570877570
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,5
|
|
|
COMMENTS
| Conjecture: a(n) > 1 for n > 4.
|
|
|
EXAMPLE
| a(5) = (11*12*13*14*15)/(5!) = 3003.
a(6) = (16*17*18*19*20*21)/(8!) = 969.
|
|
|
MATHEMATICA
| Table[a := Product[i, {i, n*(n - 1)/2 + 1, n*(n + 1)/2}]; b := 1; While[ IntegerQ[a/(b + 1)! ], b++ ]; a/b!, {n, 1, 20}] - Stefan Steinerberger (stefan.steinerberger(AT)gmail.com), Mar 14 2006
|
|
|
CROSSREFS
| Sequence in context: A156655 A128935 A145304 * A100896 A140915 A140928
Adjacent sequences: A094333 A094334 A094335 * A094337 A094338 A094339
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), May 17 2004
|
|
|
EXTENSIONS
| More terms from Stefan Steinerberger (stefan.steinerberger(AT)gmail.com), Mar 14 2006
|
| |
|
|