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!)
A166979 Triangle T(n,k) read by rows: T(n, k) = (m*n - m*k + 1)*T(n - 1, k - 1) + (9*k - 8)*(m*k - (m - 1))*T(n - 1, k) where m = 0. 1
1, 1, 1, 1, 11, 1, 1, 111, 30, 1, 1, 1111, 681, 58, 1, 1, 11111, 14050, 2305, 95, 1, 1, 111111, 278061, 78590, 5820, 141, 1, 1, 1111111, 5394270, 2478581, 293930, 12306, 196, 1, 1, 11111111, 103602241, 74794538, 13353991, 860006, 23086, 260, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Row sums are: {1, 2, 13, 143, 1852, 27563, 473725, 9290396, 203745235, 4912490375,...}.
LINKS
FORMULA
T(n, k) = T(n - 1, k - 1) + (9*k - 8)*T(n - 1, k).
EXAMPLE
{1},
{1, 1},
{1, 11, 1},
{1, 111, 30, 1},
{1, 1111, 681, 58, 1},
{1, 11111, 14050, 2305, 95, 1},
{1, 111111, 278061, 78590, 5820, 141, 1},
{1, 1111111, 5394270, 2478581, 293930, 12306, 196, 1},
{1, 11111111, 103602241, 74794538, 13353991, 860006, 23086, 260, 1},
{1, 111111111, 1979553690, 2197849305, 568892205, 52914267, 2129736, 39726, 333, 1}
MATHEMATICA
A[n_, 1] := 1; A[n_, n_] := 1; A[n_, k_] := (m*n - m*k + 1)A[n - 1, k - 1] + (9*k - 8)*(m*k - (m - 1))A[n - 1, k]; Table[A[n, k] /. m -> 0, {n, 10}, {k, n}] // Flatten (* This sequence is the case of m=0 *)
CROSSREFS
Cf. A002275.
Sequence in context: A014469 A157149 A342889 * A022174 A173006 A015125
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Oct 26 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 May 1 19:28 EDT 2024. Contains 372176 sequences. (Running on oeis4.)