login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A281380
Numbers which are palindromic in their Elias delta code representation.
2
1, 3, 5, 11, 19, 43, 91, 123, 135, 327, 455, 551, 935, 1127, 1383, 1767, 2023, 2071, 2839, 3223, 3991, 4183, 4695, 5463, 5975, 6359, 6871, 7639, 8151, 8247, 9783, 10551, 12087, 12471, 14007, 14775, 16311, 16503, 17527, 19063, 20087, 20855, 21879, 23415, 24439, 24823, 25847, 27383
OFFSET
1,2
COMMENTS
Number n, such that A281150(n) is palindromic.
LINKS
EXAMPLE
43 is in the sequence because Elias delta code for 43 is '1101001011' and '1101001011' is palindromic.
PROG
(Python)
i=1
j=1
while j<=1012:
....if A281150(i)==A281150(i)[::-1] :
........print str(j)+" "+str(i)
........j+=1
....i+=1
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Indranil Ghosh, Jan 21 2017
STATUS
approved