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.

A151784 a(n) = 6^(wt(n) - 1) where wt(n) = A000120(n).

Original entry on oeis.org

1, 1, 6, 1, 6, 6, 36, 1, 6, 6, 36, 6, 36, 36, 216, 1, 6, 6, 36, 6, 36, 36, 216, 6, 36, 36, 216, 36, 216, 216, 1296, 1, 6, 6, 36, 6, 36, 36, 216, 6, 36, 36, 216, 36, 216, 216, 1296, 6, 36, 36, 216, 36, 216, 216, 1296, 36, 216, 216, 1296, 216, 1296, 1296, 7776, 1, 6, 6, 36, 6, 36, 36
Offset: 1

Views

Author

N. J. A. Sloane, Jun 25 2009

Keywords

Examples

			From _Omar E. Pol_, Jul 21 2009: (Start)
If written as a triangle:
  1;
  1,6;
  1,6,6,36;
  1,6,6,36,6,36,36,216;
  1,6,6,36,6,36,36,216,6,36,36,216,36,216,216,1296;
  1,6,6,36,6,36,36,216,6,36,36,216,36,216,216,1296,6,36,36,216,36,216,216,...
(End)
		

Crossrefs

Programs

  • PARI
    a(n) = 6^(hammingweight(n)-1); \\ Michel Marcus, Nov 15 2022