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!)
A320986 Fibonacci rabbit sequence number n coded in base four. 2

%I #5 Oct 25 2018 20:35:52

%S 0,1,4,17,276,17681,18105620,1186569930001,79629360058944734484,

%T 350213629188686097286494407640337,

%U 103364819020299355365011185381334444307580296786887956

%N Fibonacci rabbit sequence number n coded in base four.

%H Alois P. Heinz, <a href="/A320986/b320986.txt">Table of n, a(n) for n = 0..16</a>

%p b:= proc(n) option remember; `if`(n<2, [n$2], [b(n-1)[1]*

%p 4^b(n-1)[2]+b(n-2)[1], b(n-1)[2]+b(n-2)[2]])

%p end:

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

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

%Y Column k=4 of A144287.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Oct 25 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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)