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!)
A365672 Triangle read by rows. T(n, k) = 1 if k = 0, equals T(n, k-1) if k = n, and otherwise is (n - k + 1) * (2 * (n - k) + 1) * T(n, k - 1) + T(n - 1, k). 2
1, 1, 1, 1, 7, 7, 1, 22, 139, 139, 1, 50, 889, 5473, 5473, 1, 95, 3549, 58708, 357721, 357721, 1, 161, 10794, 360940, 5771821, 34988647, 34988647, 1, 252, 27426, 1595110, 50434901, 791512162, 4784061619, 4784061619 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
This triangle is described by Peter Bala (see link).
This a weighted generalized Catalan triangle (A365673) with the hexagonal numbers as weights.
LINKS
EXAMPLE
Triangle T(n, k) starts:
[0] 1;
[1] 1, 1;
[2] 1, 7, 7;
[3] 1, 22, 139, 139;
[4] 1, 50, 889, 5473, 5473;
[5] 1, 95, 3549, 58708, 357721, 357721;
[6] 1, 161, 10794, 360940, 5771821, 34988647, 34988647;
[7] 1, 252, 27426, 1595110, 50434901, 791512162, 4784061619, 4784061619;
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) * (2 * (n - k) + 1) * T(n, k - 1) + T(n - 1, k) fi fi end:
CROSSREFS
Cf. A000384, A126156 (main diagonal), A365673 (general case).
Sequence in context: A093781 A232649 A232650 * A108390 A102400 A144860
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Sep 29 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 18:17 EDT 2024. Contains 375273 sequences. (Running on oeis4.)