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!)
A158893 Triangle read by rows: T(n,1)=7n-6; T(n,m)= 1+n-m, 1<m<=n. 1
1, 8, 1, 15, 2, 1, 22, 3, 2, 1, 29, 4, 3, 2, 1, 36, 5, 4, 3, 2, 1, 43, 6, 5, 4, 3, 2, 1, 50, 7, 6, 5, 4, 3, 2, 1, 57, 8, 7, 6, 5, 4, 3, 2, 1, 64, 9, 8, 7, 6, 5, 4, 3, 2, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
H. S. M. Coxeter, Regular Polytopes, 3rd ed., Dover, NY, 1973, pp 159-162.
LINKS
FORMULA
T(n,m)= ( T(n-1,m)*T(n,m-1)+1 )/T(n-1,m-1).
Row sums are n*(n+13)/2-6.
EXAMPLE
{1},
{8, 1},
{15, 2, 1},
{22, 3, 2, 1},
{29, 4, 3, 2, 1},
{36, 5, 4, 3, 2, 1},
{43, 6, 5, 4, 3, 2, 1},
{50, 7, 6, 5, 4, 3, 2, 1},
{57, 8, 7, 6, 5, 4, 3, 2, 1},
{64, 9, 8, 7, 6, 5, 4, 3, 2, 1}
MATHEMATICA
Clear[e, n, k];
e[n_, 0] := 7*n - 6;
e[n_, k_] := 0 /; k >= n;
e[n_, k_] := (e[n - 1, k]*e[n, k - 1] + 1)/e[n - 1, k - 1];
Table[Table[e[n, k], {k, 0, n - 1}], {n, 1, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A209684 A173988 A349123 * A342636 A332941 A107929
KEYWORD
nonn,tabl,easy
AUTHOR
EXTENSIONS
Edited by the Associate Editors of the OEIS, Apr 22 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 April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)