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!)
A033539 a(0)=1, a(1)=1, a(2)=1, a(n) = 2*a(n-1) + a(n-2) + 1. 5

%I #77 Feb 21 2022 02:18:16

%S 1,1,1,4,10,25,61,148,358,865,2089,5044,12178,29401,70981,171364,

%T 413710,998785,2411281,5821348,14053978,33929305,81912589,197754484,

%U 477421558,1152597601,2782616761,6717831124,16218279010,39154389145

%N a(0)=1, a(1)=1, a(2)=1, a(n) = 2*a(n-1) + a(n-2) + 1.

%C a(n) or a(n+1) gives the number of times certain simple recursive procedures are called to effect a reversal of a sequence of n elements (including both the top-level call and any subsequent recursive calls). See example and program lines.

%H T. D. Noe, <a href="/A033539/b033539.txt">Table of n, a(n) for n = 0..300</a>

%H Antti Karttunen, <a href="http://www.iki.fi/~kartturi/software/stacks.lsp">More information</a>

%H <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (3,-1,-1).

%F a(n) = (3/4)*(1+sqrt(2))^(n-1) + 3/4*(1-sqrt(2))^(n-1) - 1/2 + 3*0^n, with n >= 0. - _Jaume Oliver Lafont_, Sep 10 2009

%F G.f.: (1 - 2*x - x^2 + 3*x^3)/((1-x)*(1-2*x-x^2)). - _Jaume Oliver Lafont_, Sep 09 2009

%F a(n) = 3*a(n-1) - a(n-2) - a(n-3), a(0)=1, a(1)=1, a(2)=1, a(3)=4. - _Harvey P. Dale_, Nov 20 2011

%F a(n) = (3*A001333(n-1) - 1)/2. - _R. J. Mathar_, Mar 04 2013

%F a(n) = -1/2 - (3/4)*(1+sqrt(2))^n - (3/4)*sqrt(2)*(1-sqrt(2))^n - (3/4)*(1-sqrt(2))^n + (3/4)*(1+sqrt(2))^n*sqrt(2) for n >= 1. - _Alexander R. Povolotsky_, Mar 05 2013

%F E.g.f.: 3 + (1/2)*exp(x)*(-1 - 3*cosh(sqrt(2)*x) + 3*sqrt(2)*sinh(sqrt(2)*x)). - _Stefano Spezia_, Oct 13 2019

%e See the Python, Erlang (myrev), PARI (rev) and Forth definitions (REV3) given at Program section.

%e PARI, Python and Erlang functions are called a(n+1) times for the list of length n, while Forth word REV3 is called a(n) times if there are n elements in the parameter stack.

%p seq(coeff(series((1 -2*x -x^2 +3*x^3)/((1-x)*(1-2*x-x^2)), x, n+1), x, n), n = 0..30); # _G. C. Greubel_, Oct 13 2019

%t Join[{1},RecurrenceTable[{a[0]==a[1]==1,a[n]==2a[n-1]+a[n-2]+1},a,{n,30}]] (* or *) LinearRecurrence[{3,-1,-1},{1,1,1,4},30] (* _Harvey P. Dale_, Nov 20 2011 *)

%t Table[If[n==0, 1, (3*LucasL[n-1, 2] -2)/4], {n, 0, 30}] (* _G. C. Greubel_, Oct 13 2019 *)

%o (Haskell)

%o a033539 n = a033539_list !! n

%o a033539_list =

%o 1 : 1 : 1 : (map (+ 1) $ zipWith (+) (tail a033539_list)

%o (map (2 *) $ drop 2 a033539_list))

%o -- _Reinhard Zumkeller_, Aug 14 2011

%o (PARI)

%o /* needs version >= 2.5 */

%o /* function demonstrating the reversal of the lists and counting the function calls: */

%o rev( L )={ cnt++; if( #L>1, my(x,y); x=L[#L]; listpop(L); L=rev(L); y=L[#L]; listpop(L); L=rev(L); listput(L,x); L=rev(L); listput(L,y)); L }

%o for(n=0,50,cnt=0;print(n": rev(",L=List(vector(n,i,i)),")=",rev(L),", cnt="cnt)) \\ _Antti Karttunen_, Mar 05 2013, partially based on previous PARI code from _Michael Somos_, 1999. Edited by _M. F. Hasler_, Mar 05 2013

%o (Python)

%o # function, demonstrating the reversal of the lists:

%o def myrev(lista):

%o '''Reverses a list, in cumbersome way.'''

%o if(len(lista) < 2): return(lista)

%o else:

%o tr = myrev(lista[1:])

%o return([tr[0]]+myrev([lista[0]]+myrev(tr[1:])))

%o (Erlang)

%o # definition, demonstrating the reversal of the lists:

%o myrev([]) -> [];

%o myrev([A]) -> [A];

%o myrev([X|Y]) ->

%o [A|B] = myrev(Y),

%o [A|myrev([X|myrev(B)])].

%o (Forth)

%o # definition, demonstrating how to turn a parameter stack upside down:

%o : REV3 DEPTH 0= IF ELSE DEPTH 1 = IF ELSE DEPTH 2 = IF SWAP ELSE >R RECURSE R> SWAP >R >R RECURSE R> RECURSE R> THEN THEN THEN ;

%o -- _Antti Karttunen_, Mar 04 2013

%o (PARI) concat([1], vector(30, n, (3*sum(k=0,(n-1)\2, binomial(n-1,2*k) * 2^k) - 1)/2 )) \\ _G. C. Greubel_, Oct 13 2019

%o (Magma) I:=[1,1,4]; [1] cat [n le 3 select I[n] else 3*Self(n-1) - Self(n-2) - Self(n-3): n in [1..30]]; // _G. C. Greubel_, Oct 13 2019

%o (Sage) [1]+[(3*lucas_number2(n-1,2,-1) -2)/4 for n in (1..30)] # _G. C. Greubel_, Oct 13 2019

%o (GAP) Concatenation([1], List([1..30], n-> (3*Lucas(2,-1,n-1)[2] -2)/4 )); # _G. C. Greubel_, Oct 13 2019

%o (Prolog)

%o rev([],[]).

%o rev([A],[A]).

%o rev([A|XB],[B|YA]) :-

%o rev(XB,[B|Y]), rev(Y,X), rev([A|X],YA). % _Lewis Baxter_, Jan 04 2021

%Y Cf. A002203, A033538.

%K nonn,easy,nice

%O 0,4

%A _Antti Karttunen_

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 25 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)