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

A157984
a(n) = n!/(7 * 20!).
0
3, 66, 1518, 36432, 910800, 23680800, 639381600, 17902684800, 519177859200, 15575335776000, 482835409056000, 15450733089792000, 509874191963136000, 17335722526746624000, 606750288436131840000, 21843010383700746240000
OFFSET
21,1
COMMENTS
From calculations for a Witt design:
http://www.math.uic.edu/~ronan/Witt_design;
a(n)*8!/3! - 48*n!/19!
MATHEMATICA
Flatten[Table[If[IntegerQ[48*3!*n!/(8!*19! )], 48*3!*n!/( 8!*19! ), {}], {n, 0, 48}]] (* Roger L. Bagula *)
Select[With[{n=48 3!, d=8! 19!}, Table[(n i!)/d, {i, 50}]], IntegerQ] (* Harvey P. Dale, Jan 05 2011 *)
f[n_] := n!/(7 * 20!); Array[f, 10, 21] (* Robert G. Wilson v, Jan 05 2011 *)
CROSSREFS
Sequence in context: A259457 A157543 A368596 * A187547 A157554 A185053
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Mar 10 2009
STATUS
approved