The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A233524 Numbers n such that the binary expansion of Fibonacci(n) is a palindrome (leading zero digits are not permitted). 0

%I #44 Jun 23 2021 06:48:38

%S 0,1,2,4,5,8

%N Numbers n such that the binary expansion of Fibonacci(n) is a palindrome (leading zero digits are not permitted).

%C The next term of the sequence, if it exists, is greater than 10^5.

%C No more terms < 10^7. - _Lars Blomberg_, Jun 19 2014

%H Huang Yuke and Wen Zhiying, <a href="https://arxiv.org/abs/1601.04391">The structure of palindromes in the Fibonacci sequence and some applications</a>, arXiv: 1601.04391[math.DS], 2016.

%t t = {}; Do[b = IntegerDigits[Fibonacci[n], 2]; If[b == Reverse[b], AppendTo[t, n]], {n, 0, 1000}]; t (* _T. D. Noe_, Dec 14 2013 *)

%t Select[Range[0,10],PalindromeQ[IntegerDigits[Fibonacci[#],2]]&] (* Requires Mathematica version 10 or later *) (* _Harvey P. Dale_, Aug 04 2019 *)

%Y Cf. A000045 (Fibonacci), A004685 (binary Fibonacci), A007088 (binary nonnegative integers).

%Y Cf. A045504.

%K nonn,base,more

%O 1,3

%A _L. Edson Jeffery_, Dec 11 2013

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 May 19 14:17 EDT 2024. Contains 372697 sequences. (Running on oeis4.)