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!)
A367962 Triangle read by rows. T(n, k) = Sum_{j=0..k} (n!/j!). 1
1, 1, 2, 2, 4, 5, 6, 12, 15, 16, 24, 48, 60, 64, 65, 120, 240, 300, 320, 325, 326, 720, 1440, 1800, 1920, 1950, 1956, 1957, 5040, 10080, 12600, 13440, 13650, 13692, 13699, 13700, 40320, 80640, 100800, 107520, 109200, 109536, 109592, 109600, 109601 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
T(n, k) = A094587(n, k) * A000522(k).
T(n, k) = e * (n! / k!) * Gamma(k + 1, 1).
Sum_{k=0..n} T(n, k) * 2^(n - k) = A053482(n).
Sum_{k=0..n} T(n, k) * binomial(n, k) = A331689(n).
Recurrence: T(n, n) = T(n, n-1) + 1 starting with T(0, 0) = 1.
For k <> n: T(n, k) = n * T(n-1, k).
EXAMPLE
[0] 1;
[1] 1, 2;
[2] 2, 4, 5;
[3] 6, 12, 15, 16;
[4] 24, 48, 60, 64, 65;
[5] 120, 240, 300, 320, 325, 326;
[6] 720, 1440, 1800, 1920, 1950, 1956, 1957;
MAPLE
T := (n, k) -> add(n!/j!, j = 0..k):
seq(seq(T(n, k), k = 0..n), n = 0..9);
MATHEMATICA
Module[{n=1}, NestList[Append[n#, 1+Last[#]n++]&, {1}, 10]] (* or *)
Table[Sum[n!/j!, {j, 0, k}], {n, 0, 10}, {k, 0, n}] (* Paolo Xausa, Dec 07 2023 *)
PROG
(SageMath)
def T(n, k): return sum(falling_factorial(n, n - j) for j in range(k + 1))
for n in range(9): print([T(n, k) for k in range(n + 1)])
(Python)
from functools import cache
@cache
def a_row(n: int) -> list[int]:
if n == 0: return [1]
row = a_row(n - 1) + [0]
for k in range(n): row[k] *= n
row[n] = row[n - 1] + 1
return row
CROSSREFS
Cf. A094587, A000142 (T(n, 0)), A052849 (T(n, 1)), A000522 (T(n, n)), A007526 (T(n,n-1)), A038154 (T(n, n-2)), A355268 (T(n, n/2)), A367963(n) (T(2*n, n)/n!).
Cf. A001339 (row sums), A087208 (alternating row sums), A082030 (accumulated sums), A053482, A331689.
Sequence in context: A138883 A257632 A325554 * A107849 A053036 A308840
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Dec 06 2023
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 May 5 06:40 EDT 2024. Contains 372257 sequences. (Running on oeis4.)