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

%I #4 Oct 25 2018 20:42:23

%S 0,1,6,37,1338,289045,2247615258,3775130549469973,

%T 49305824977081270580396826,

%U 1081619448805341465793189347926225612555029,309896735146874396575135322682564794037430646677718800894678718858010

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

%H Alois P. Heinz, <a href="/A320988/b320988.txt">Table of n, a(n) for n = 0..15</a>

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

%p 6^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=6 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 19 05:02 EDT 2024. Contains 371782 sequences. (Running on oeis4.)