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!)
A136572 Triangle read by rows: row n consists of n zeros followed by n!. 7
1, 0, 1, 0, 0, 2, 0, 0, 0, 6, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 120, 0, 0, 0, 0, 0, 0, 720, 0, 0, 0, 0, 0, 0, 0, 5040, 0, 0, 0, 0, 0, 0, 0, 0, 40320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3628800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39916800 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
LINKS
FORMULA
Triangle, n zeros followed by n! T(n,k): n! * 0^(n-k), 0 <= k <= n.
As an infinite lower triangular matrix, A000142 (1, 1, 2, 6, 24, 120, ...) in the main diagonal and the rest zeros.
EXAMPLE
First few rows of the triangle:
1;
0, 1;
0, 0, 2;
0, 0, 0, 6;
0, 0, 0, 0, 24;
0, 0, 0, 0, 0, 120;
...
MATHEMATICA
Table[PadLeft[{n!}, n+1, 0], {n, 0, 20}]//Flatten (* Harvey P. Dale, Oct 22 2016 *)
PROG
(Haskell)
a136572 n k = a136572_tabl !! n !! k
a136572_row n = a136572_tabl !! n
a136572_tabl = map fst $ iterate f ([1], 1) where
f (row, i) = (0 : map (* i) row, i + 1)
-- Reinhard Zumkeller, Nov 18 2012
CROSSREFS
Sequence in context: A082399 A051883 A132792 * A339016 A262679 A326390
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Jan 07 2008
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)