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!)
A321789 Factorials of terms of Pascal's triangle by row. 0
1, 1, 1, 1, 2, 1, 1, 6, 6, 1, 1, 24, 720, 24, 1, 1, 120, 3628800, 3628800, 120, 1, 1, 720, 1307674368000, 2432902008176640000, 1307674368000, 720, 1, 1, 5040, 51090942171709440000, 10333147966386144929666651337523200000000, 10333147966386144929666651337523200000000, 51090942171709440000, 5040, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
EXAMPLE
The 12th term is 24 because the 12th term of Pascal's triangle by row is 4 and 4! is 24 (4*3*2*1).
MAPLE
T:=(n, k)->factorial(binomial(n, k)): seq(seq(T(n, k), k=0..n), n=0..7); # Muniru A Asiru, Dec 20 2018
MATHEMATICA
Flatten[Table[Binomial[n, k]!, {n, 0, 6}, {k, 0, n}]] (* Amiram Eldar, Nov 19 2018 *)
PROG
(GAP) Flat(List([0..7], n->List([0..n], k->Factorial(Binomial(n, k))))); # Muniru A Asiru, Dec 20 2018
CROSSREFS
Sequence in context: A155795 A009963 A008300 * A173887 A288025 A137376
KEYWORD
nonn,tabl
AUTHOR
Kei Ryan, Nov 19 2018
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 25 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)