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!)
A255919 Gray code of Fibonacci(n). 2
0, 1, 1, 3, 2, 7, 12, 11, 31, 51, 44, 117, 216, 157, 453, 851, 566, 1315, 3860, 6271, 5979, 16291, 26552, 22537, 61360, 112537, 79657, 229603, 439754, 275695, 715580, 2019251, 3253127, 3089427, 8160916, 13281965, 9582952, 29937989, 58607677, 36145651, 85311918 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = A003188(A000045(n)).
MAPLE
A255919 := proc(n)
A003188(combinat[fibonacci](n)) ;
end proc:
seq(A255919(n), n=0..40) ;
MATHEMATICA
GrayCode[n_] := BitXor[n, Floor[n/2]]; Table[ GrayCode[ Fibonacci[ n]], {n, 0, 40}] (* Robert G. Wilson v, Mar 09 2015 *)
PROG
(PARI) A255919(n)=my(f=fibonacci(n)); bitxor(f, f\2); \\ Joerg Arndt, Mar 10 2015
CROSSREFS
Sequence in context: A053440 A329724 A143332 * A212189 A114647 A234750
KEYWORD
nonn
AUTHOR
R. J. Mathar, Mar 11 2015
STATUS
approved

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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)