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!)
A102364 Number of terms in Fibonacci sequence less than n not used in Zeckendorf representation of n (the Zeckendorf representation of n is a sum of non-consecutive distinct Fibonacci numbers). 10

%I #20 Sep 29 2018 18:44:01

%S 0,0,1,2,1,3,2,2,4,3,3,3,2,5,4,4,4,3,4,3,3,6,5,5,5,4,5,4,4,5,4,4,4,3,

%T 7,6,6,6,5,6,5,5,6,5,5,5,4,6,5,5,5,4,5,4,4,8,7,7,7,6,7,6,6,7,6,6,6,5,

%U 7,6,6,6,5,6,5,5,7,6,6,6,5,6,5,5,6,5,5

%N Number of terms in Fibonacci sequence less than n not used in Zeckendorf representation of n (the Zeckendorf representation of n is a sum of non-consecutive distinct Fibonacci numbers).

%C Number of 0's in Zeckendorf-binary representation of n. For example, the Zeckendorf representation of 12 is 8+3+1, which is 10101 in binary notation.

%C For n > 0: number of zeros in n-th row of A213676, or, number of zeros in n-th row of A189920. - _Reinhard Zumkeller_, Mar 10 2013

%D E. Zeckendorf, Représentation des nombres naturels par une somme des nombres de Fibonacci ou de nombres de Lucas, Bull. Soc. Roy. Sci. Liège 41, 179-182, 1972.

%H Alois P. Heinz, <a href="/A102364/b102364.txt">Table of n, a(n) for n = 0..10946</a>

%H Ron Knott, <a href="http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Fibonacci/fibGen.html">General Fibonacci Series</a>

%p F:= combinat[fibonacci]:

%p b:= proc(n) option remember; local j;

%p if n=0 then 0

%p else for j from 2 while F(j+1)<=n do od;

%p b(n-F(j))+2^(j-2)

%p fi

%p end:

%p a:= proc(n) local c,m;

%p c, m:= 0, b(n);

%p while m>0 do c:= c +1 -irem(m, 2, 'm');

%p od; c

%p end:

%p seq(a(n), n=0..150); # _Alois P. Heinz_, May 18 2012

%t F = Fibonacci; b[n_] := b[n] = Module[{j}, If[n==0, 0, For[j=2, F[j+1] <= n, j++]; b[n-F[j]]+2^(j-2)]]; a[n_] := Module[{c, m}, {c, m} = {0, b[n]}; While[m>0, c = c + 1 - Mod[m, 2]; m = Floor[m/2]]; c]; Table[a[n], {n, 0, 100}] (* _Jean-François Alcover_, Jan 09 2016, after _Alois P. Heinz_ *)

%o (Haskell)

%o a102364 0 = 0

%o a102364 n = length $ filter (== 0) $ a213676_row n

%o -- _Reinhard Zumkeller_, Mar 10 2013

%Y Cf. A007895, A072649.

%K nonn

%O 0,4

%A _Casey Mongoven_, Feb 22 2005

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