login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A166350 Table T(n,m) = m! read by rows. 10
1, 1, 2, 1, 2, 6, 1, 2, 6, 24, 1, 2, 6, 24, 120, 1, 2, 6, 24, 120, 720, 1, 2, 6, 24, 120, 720, 5040, 1, 2, 6, 24, 120, 720, 5040, 40320, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800, 1, 2, 6, 24, 120, 720, 5040, 40320 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
T(n,m) = A000142(m).
MATHEMATICA
Flatten[Table[Range[n]!, {n, 11}]] (* Harvey P. Dale, Jan 06 2012 *)
Module[{nn=20, fs}, fs=Range[nn]!; Table[Take[fs, n], {n, nn}]]//Flatten (* Harvey P. Dale, Jun 14 2020 *)
PROG
(Haskell)
import Data.List (inits)
a166350 n k = a166350_tabl !! (n-1) !! (n-1)
a166350_row n = a166350_tabl !! (n-1)
a166350_tabl = tail $ inits $ tail a000142_list
-- Reinhard Zumkeller, Nov 11 2013
CROSSREFS
Cf. A014454.
Sequence in context: A129116 A096179 A361834 * A357124 A210227 A208757
KEYWORD
nonn,tabl
AUTHOR
Paul Curtz, Oct 12 2009
EXTENSIONS
Definition clarified - R. J. Mathar, Oct 14 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)