Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A365674 Triangle read by rows. T(n, k) = ((n - k + 1)*(n - k + 2)/2) * T(n, k - 1) + T(n - 1, k) for 0 < k < n, T(n, 0) = 1 and T(n, n) = T(n, n - 1) for n > 0. 1
1, 1, 1, 1, 4, 4, 1, 10, 34, 34, 1, 20, 154, 496, 496, 1, 35, 504, 3520, 11056, 11056, 1, 56, 1344, 16960, 112816, 349504, 349504, 1, 84, 3108, 63580, 748616, 4841200, 14873104, 14873104, 1, 120, 6468, 199408, 3739736, 42238560, 268304464, 819786496, 819786496 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
This triangle is associated to the case n = 3 of A365673 and has as weight function the triangular numbers A000217. The numbers on its main diagonal are the reduced tangent numbers A002105. For details see A365673.
LINKS
EXAMPLE
[0] 1;
[1] 1, 1;
[2] 1, 4, 4;
[3] 1, 10, 34, 34;
[4] 1, 20, 154, 496, 496;
[5] 1, 35, 504, 3520, 11056, 11056;
[6] 1, 56, 1344, 16960, 112816, 349504, 349504;
[7] 1, 84, 3108, 63580, 748616, 4841200, 14873104, 14873104;
MAPLE
T := proc(n, k) option remember; if k = 0 then 1 else if k = n then T(n, k - 1) else ((n - k + 1)*(n - k + 2)/2) * T( n, k - 1) + T( n - 1, k) fi fi end:
seq(print(seq(T(n, k), k = 0..n)), n = 0..8);
CROSSREFS
Cf. A002105 (main diagonal), A365673 (case n=3), A000217 (weight).
Sequence in context: A289710 A243594 A360707 * A106026 A096078 A140313
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Sep 30 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 August 18 16:14 EDT 2024. Contains 375269 sequences. (Running on oeis4.)