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.

A036603 a(n) = n! in binary.

Original entry on oeis.org

1, 1, 10, 110, 11000, 1111000, 1011010000, 1001110110000, 1001110110000000, 1011000100110000000, 1101110101111100000000, 10011000010001010100000000, 11100100011001111110000000000, 101110011001010001100110000000000, 1010001001100001110110010100000000000
Offset: 0

Views

Author

Keywords

References

  • Donald E. Knuth, Art of Computer Programming, Vol. 3, Sect. 5.3.1, Table 1.

Crossrefs

Programs

  • Mathematica
    FromDigits/@(IntegerDigits[#, 2]&/@(Range[0, 15]!)) (* Harvey P. Dale, Feb 05 2012 *)
    BaseForm[Range[0, 15]!, 2] (* Alonso del Arte, May 19 2017 *)
  • PARI
    a(n) = fromdigits(binary(n!), 10); \\ Michel Marcus, Jul 30 2025