login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A371489
Row sums of A371259.
0
1, 37, 1865, 122961, 10278281, 1062714245, 133215991777, 19913088181377, 3500271565033393, 714944028588443461, 167950356430067342489, 44970653636552995400721, 13617086217015989835215993, 4630206565577103694905252965, 1756940670213816382344684605809, 739791104690854220148748269632001
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