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.

A333415 Odd positive integers in base 2 read backwards.

Original entry on oeis.org

1, 11, 101, 111, 1001, 1101, 1011, 1111, 10001, 11001, 10101, 11101, 10011, 11011, 10111, 11111, 100001, 110001, 101001, 111001, 100101, 110101, 101101, 111101, 100011, 110011, 101011, 111011, 100111, 110111, 101111, 111111, 1000001, 1100001, 1010001, 1110001, 1001001
Offset: 1

Views

Author

Devansh Singh, Mar 20 2020

Keywords

Crossrefs

Programs

  • Maple
    f:= proc(n) local L,i;
     L:= convert(n,base,2);
     add(L[-i]*10^(i-1),i=1..nops(L));
    end proc
    map(f, [seq(i,i=1..100,2)]); # Robert Israel, May 19 2024
  • Mathematica
    Table[FromDigits[Reverse[IntegerDigits[n, 2]]], {n, 1, 75, 2}] (* Amiram Eldar, Apr 27 2020 *)
  • PARI
    a(n) = fromdigits(Vecrev(binary(2*n-1))); \\ Michel Marcus, May 19 2024

Formula

From Michel Marcus, Apr 23 2020: (Start)
a(n) = A007088(A145341(n)).
a(n) = A004086(A099821(n)). (End)

Extensions

New name, a(1)=1 and more terms from Michel Marcus, Apr 23 2020