cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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

Original entry on oeis.org

0, 1, 2, 4, 5, 8
Offset: 1

Views

Author

L. Edson Jeffery, Dec 11 2013

Keywords

Comments

The next term of the sequence, if it exists, is greater than 10^5.
No more terms < 10^7. - Lars Blomberg, Jun 19 2014

Crossrefs

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

Programs

  • Mathematica
    t = {}; Do[b = IntegerDigits[Fibonacci[n], 2]; If[b == Reverse[b], AppendTo[t, n]], {n, 0, 1000}]; t (* T. D. Noe, Dec 14 2013 *)
    Select[Range[0,10],PalindromeQ[IntegerDigits[Fibonacci[#],2]]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Aug 04 2019 *)