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.

A281380 Numbers which are palindromic in their Elias delta code representation.

Original entry on oeis.org

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

Views

Author

Indranil Ghosh, Jan 21 2017

Keywords

Comments

Number n, such that A281150(n) is palindromic.

Examples

			43 is in the sequence because Elias delta code for 43 is '1101001011' and '1101001011' is palindromic.
		

Crossrefs

Programs

  • Python
    i=1
    j=1
    while j<=1012:
        if  A281150(i)==A281150(i)[::-1] :
            print(str(j)+" "+str(i))
            j+=1
        i+=1