cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A288778 Triangle read by rows (1<=k<=n): T(n,k) = (n-k+1)*k! - (k-1)!

This page as a plain text file.
%I A288778 #26 Jun 20 2017 23:35:05
%S A288778 0,1,1,2,3,4,3,5,10,18,4,7,16,42,96,5,9,22,66,216,600,6,11,28,90,336,
%T A288778 1320,4320,7,13,34,114,456,2040,9360,35280,8,15,40,138,576,2760,14400,
%U A288778 75600,322560,9,17,46,162,696,3480,19440,115920,685440,3265920,10,19,52,186,816,4200,24480,156240,1048320,6894720,36288000
%N A288778 Triangle read by rows (1<=k<=n): T(n,k) = (n-k+1)*k! - (k-1)!
%C A288778 T(10,k) is also the number of positive integers with k digits in the sequence A215014. See _Franklin T. Adams-Watters_'s comment in that entry. See also A288780.
%F A288778 T(n,k) = A288777(n,k) - A000142(k-1), n>=1.
%e A288778 Triangle begins:
%e A288778 0;
%e A288778 1,   1;
%e A288778 2,   3,  4;
%e A288778 3,   5, 10,  18;
%e A288778 4,   7, 16,  42,  96;
%e A288778 5,   9, 22,  66, 216,  600;
%e A288778 6,  11, 28,  90, 336, 1320,  4320;
%e A288778 7,  13, 34, 114, 456, 2040,  9360,  35280;
%e A288778 8,  15, 40, 138, 576, 2760, 14400,  75600,  322560;
%e A288778 9,  17, 46, 162, 696, 3480, 19440, 115920,  685440, 3265920;
%e A288778 10, 19, 52, 186, 816, 4200, 24480, 156240, 1048320, 6894720, 36288000;
%e A288778 ...
%e A288778 For n = 10 and k = 2; T(10,2) = 17 coincides with the number of positive terms with two digits in A215014 (see the first comment above).
%t A288778 Table[(n - k + 1) k! - (k - 1)!, {n, 11}, {k, n}] // Flatten (* _Michael De Vlieger_, Jun 16 2017 *)
%Y A288778 Column 1 gives A001477.
%Y A288778 Row sums give A288780.
%Y A288778 Cf. A000142, A004736, A166350, A215014, A288777.
%K A288778 nonn,tabl,easy
%O A288778 1,4
%A A288778 _Omar E. Pol_, Jun 15 2017