OFFSET
1,3
COMMENTS
Each term is a palindrome when written in base 2.
This entry is the result of merging two sequences. The old definition (which did not have the initial zero) was: "a(1)=1. For n >= 2, each a(n) = the decimal equivalent of either a(k)Ua(k) or a(k)U0Ua(k) or a(k)U1Ua(k), where U denotes concatenation of the binary representations of the arguments, and where k is some positive integer < n. The numbers are arranged in numerical order."
LINKS
Lior Manor, Table of n, a(n) for n = 1..1000
MATHEMATICA
Select[Range[2^14], And[PalindromeQ@ Take[#, Floor[Length[#]/2]], PalindromeQ[#]] &@ IntegerDigits[#, 2] &] (* Michael De Vlieger, Nov 08 2017 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Leroy Quet, Sep 26 2009
EXTENSIONS
Extended by Ray Chandler, Mar 12 2010
New definition from Lior Manor, May 27 2014
Edited by N. J. A. Sloane, May 30 2014
STATUS
approved