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!)
A271488 Maximal term of TRIP-Stern sequence of level n corresponding to permutation triple (e,23,e). 5

%I #27 Jan 08 2018 09:18:58

%S 1,2,3,4,5,8,11,15,21,30,41,56,79,112,153,209,297,418,571,782,1109,

%T 1560,2131,2940,4141,5822,7953,10981,15455,21728,29681,41003,57681,

%U 81090,110771,153105,215269,302632,413403,571428,803397

%N Maximal term of TRIP-Stern sequence of level n corresponding to permutation triple (e,23,e).

%H I. Amburg, K. Dasaratha, L. Flapan, T. Garrity, C. Lee, C. Mihailak, N. Neumann-Chun, S. Peluse, M. Stoffregen, <a href="http://arxiv.org/abs/1509.05239">Stern Sequences for a Family of Multidimensional Continued Fractions: TRIP-Stern Sequences</a>, arXiv:1509.05239v1 [math.CO] 17 Sep 2015. See Conjecture 5.8.

%p A271488T := proc(n)

%p option remember;

%p local an ;

%p if n = 1 then

%p [1,1,1] ;

%p else

%p an := procname(floor(n/2)) ;

%p if type(n,'even') then

%p # apply F0

%p [op(2,an),op(1,an)+op(3,an),op(3,an)] ;

%p else

%p # apply F1

%p [op(1,an),op(2,an),op(1,an)+op(3,an)] ;

%p end if;

%p end if;

%p end proc:

%p A271488 := proc(n)

%p local a,l,nmax;

%p a := 0 ;

%p for l from 2^n to 2^(n+1)-1 do

%p nmax := max( op(A271488T(l)) );

%p a := max(a,nmax) ;

%p end do:

%p a ;

%p end proc: # _R. J. Mathar_, Apr 16 2016

%t A271487T[n_] := A271487T[n] = Module[{an}, If[n == 1, {1, 1, 1}, an = A271487T[Floor[n/2]]; If[EvenQ[n], {an[[2]], an[[1]] + an[[3]], an[[3]]}, {an[[1]], an[[2]], an[[1]] + an[[3]]}]]];

%t a[n_] := a[n] = Module[{a = 0, l, nMax}, For[l = 2^n, l <= 2^(n + 1) - 1, l++, nMax = Max[A271487T[l]]; a = Max[a, nMax]]; a];

%t Table[Print["a(", n, ") = ", a[n]]; a[n], {n, 0, 20}] (* _Jean-François Alcover_, Nov 17 2017, after _R. J. Mathar_ *)

%Y For sequences mentioned in Conjecture 5.8 of Amburg et al. (2015) see A271485, A000930, A271486, A271487, A271488, A164001, A000045, A271489.

%K nonn,more

%O 0,2

%A _N. J. A. Sloane_, Apr 13 2016

%E a(4) corrected by _Jean-François Alcover_ and _Vaclav Kotesovec_, Nov 18 2017

%E a(21)-a(24) from _Vaclav Kotesovec_, Nov 18 2017

%E a(25)-a(26) from _Vaclav Kotesovec_, Nov 29 2017

%E a(27)-a(40) from _Lars Blomberg_, Jan 08 2018

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