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!)
A371489 Row sums of A371259. 0
1, 37, 1865, 122961, 10278281, 1062714245, 133215991777, 19913088181377, 3500271565033393, 714944028588443461, 167950356430067342489, 44970653636552995400721, 13617086217015989835215993, 4630206565577103694905252965, 1756940670213816382344684605809, 739791104690854220148748269632001 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,2
COMMENTS
Row sums of A371259 are the summed (2, 3)-Lah numbers (A371259).
LINKS
A. Žigon Tankosič, The (l,r)-Lah Numbers, Journal of Integer Sequences, Article 23.2.6, vol. 26 (2023).
MAPLE
T := proc(n) local T, k; T := proc(n, k) option remember; if
n = k then 1; elif k < 3 or n < k then 0; else T(n - 1, k - 1) + (n + k -
1)^2*T(n - 1, k); end if; end proc; add(T(n, k), k = 3 .. n); end proc; seq(T(n), n = 0 .. 18);
CROSSREFS
Cf. A371259.
Sequence in context: A130013 A370149 A088872 * A025762 A297313 A297505
KEYWORD
nonn
AUTHOR
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 July 16 19:40 EDT 2024. Contains 374358 sequences. (Running on oeis4.)