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.

A048642 Partial products of A003188 (Gray code).

Original entry on oeis.org

1, 1, 3, 6, 36, 252, 1260, 5040, 60480, 786240, 11793600, 165110400, 1651104000, 18162144000, 163459296000, 1307674368000, 31384184832000, 784604620800000, 21184324761600000, 550792443801600000, 16523773314048000000
Offset: 0

Views

Author

Antti Karttunen, Jul 14 1999

Keywords

Crossrefs

Programs

  • Mathematica
    Join[{1},FoldList[Times,Table[BitXor[n,Floor[n/2]],{n,20}]]] (* Harvey P. Dale, Oct 05 2016 *)
  • PARI
    a(n) = prod(i=1, n, bitxor(i, i>>1)); \\ Michel Marcus, Apr 22 2013, Oct 02 2015

Formula

a(0) = 1, a(n) = product(XOR(j, floor(j/2)), j=1..n).
a((2^n)-1) = A000142((2^n)-1) for all n.