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!)
A243237 Number of isoscent sequences of length n with maximal number of ascents. 2

%I #10 Aug 27 2021 08:23:59

%S 1,1,1,4,3,25,17,2,172,53,7,1422,436,72,5,7894,1854,271,19,86372,

%T 19919,3179,312,14,527951,102503,14324,1287,56,7237537,1373018,198783,

%U 20572,1350,42,48862041,8055893,1032239,96532,5866,174,801902467,129068117,16767855

%N Number of isoscent sequences of length n with maximal number of ascents.

%H Joerg Arndt and Alois P. Heinz, <a href="/A243237/b243237.txt">Table of n, a(n) for n = 0..100</a>

%F a(n) = A242351(n,n+3-ceiling(2*sqrt(n+2))).

%p b:= proc(n, i, t) option remember; `if`(n<1, 1, expand(add(

%p `if`(j>i, x, 1) *b(n-1, j, t+`if`(j=i, 1, 0)), j=0..t+1)))

%p end:

%p a:= n-> (p-> coeff(p, x, degree(p)))(b(n-1, 0$2)):

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

%t b[n_, i_, t_] := b[n, i, t] = If[n < 1, 1, Expand[Sum[

%t If[j > i, x, 1]*b[n - 1, j, t + If[j == i, 1, 0]], {j, 0, t + 1}]]];

%t a[n_] := With[{p = b[n - 1, 0, 0]}, Coefficient[p, x, Exponent[p, x]]];

%t Table[a[n], {n, 0, 50}] (* _Jean-François Alcover_, Aug 27 2021, after Maple code *)

%K nonn

%O 0,4

%A _Joerg Arndt_ and _Alois P. Heinz_, Jun 01 2014

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