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!)
A336512 Total sum of the left-to-right minima in all compositions of n. 5

%I #18 Mar 07 2022 07:55:06

%S 0,1,3,8,17,38,78,162,330,672,1355,2736,5503,11058,22191,44507,89198,

%T 178697,357852,716440,1434041,2869935,5742801,11490298,22988084,

%U 45988166,91995547,184021931,368093352,736266262,1472660452,2945526806,5891385159,11783304479

%N Total sum of the left-to-right minima in all compositions of n.

%H Alois P. Heinz, <a href="/A336512/b336512.txt">Table of n, a(n) for n = 0..1000</a>

%e a(4) = 1 + 1 + 1 + 2 + 1 + 2 + 1 + 3 + 1 + 4 = 17: (1)111, (1)12, (1)21, (2)(1)1, (2)2, (1)3, (3)(1), (4).

%p b:= proc(n, m) option remember; `if`(n=0, [1, 0], add((p-> [0,

%p `if`(j<m, j*p[1], 0)]+p)(b(n-j, min(m, j))), j=1..n))

%p end:

%p a:= n-> b(n, n+1)[2]:

%p seq(a(n), n=0..50);

%t b[n_, m_] := b[n, m] = If[n == 0, {1, 0}, Sum[Function[p, {0,

%t If[j < m, j*p[[1]], 0]} + p][b[n - j, Min[m, j]]], {j, 1, n}]];

%t a[n_] := b[n, n + 1][[2]];

%t Table[a[n], {n, 0, 50}] (* _Jean-François Alcover_, Mar 07 2022, after _Alois P. Heinz_ *)

%Y Cf. A001563 (the same for permutations of [n]), A336484, A336511, A336516, A336770.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Jul 23 2020

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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)