login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A151784 a(n) = 6^(wt(n) - 1) where wt(n) = A000120(n). 2
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
EXAMPLE
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)
PROG
(Python 3.10+)
def A151784(n): return 6**(n.bit_count()-1) # Chai Wah Wu, Nov 15 2022
(PARI) a(n) = 6^(hammingweight(n)-1); \\ Michel Marcus, Nov 15 2022
CROSSREFS
Cf. A000400. - Omar E. Pol, Jul 21 2009
Sequence in context: A292862 A070472 A320394 * A093563 A081775 A156163
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 25 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 19 04:26 EDT 2024. Contains 370952 sequences. (Running on oeis4.)