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.

A264663 Catalan numbers written in base 2.

Original entry on oeis.org

1, 1, 10, 101, 1110, 101010, 10000100, 110101101, 10110010110, 1001011111110, 100000110011100, 1110010110100010, 110010110010001100, 10110101010111110100, 1010001100111100001000, 100100111110111001111101, 10000110111000001111100110, 111101110100011100011110110, 11100011110000011000000101100
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 20 2015

Keywords

Crossrefs

Programs

  • Magma
    [Seqint(Intseq(Catalan(n), 2)): n in [0..20]]; // Vincenzo Librandi, Nov 21 2015
  • Mathematica
    Table[FromDigits[IntegerDigits[CatalanNumber[n], 2]], {n, 0, 18}]
  • PARI
    vector(30, n, n--; subst(Pol(binary(binomial(2*n,n)/(n+1))), 'x, 10)) \\ Altug Alkan, Nov 20 2015
    

Formula

a(n) = A007088(A000108(n)).