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!)
A305658 Powers of 3 in base 3/2. 1
1, 20, 2100, 212000, 210110000, 21202200000, 21200101000000, 21011002020000000, 2120220212100000000, 2120012010112000000000, 2101102110221110000000000, 212211101110122200000000000, 212001222211110201000000000000, 210112102201222221020000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) has n zeros at the end.
a(n) is A305659(n) with n zeros added at the end, where A305659(n) is powers of 2 in base 3/2.
LINKS
B. Chen, R. Chen, J. Guo, S. Lee et al., On Base 3/2 and its Sequences, arXiv:1808.04304 [math.NT], 2018.
FORMULA
a(n) = A024629(A000244(n)).
MAPLE
b:= proc(n) `if`(n<1, 0, irem(n, 3, 'q')+b(2*q)*10) end:
a:= n-> b(3^n):
seq(a(n), n=0..20); # Alois P. Heinz, Jun 18 2018
PROG
(PARI) f(n) = if( n<1, 0, f(n\3 * 2) * 10 + n%3);
a(n) = f(3^n); \\ Michel Marcus, Jun 18 2018
CROSSREFS
Sequence in context: A123479 A071152 A195622 * A329067 A064878 A222943
KEYWORD
nonn,base
AUTHOR
Tanya Khovanova and PRIMES STEP Senior group, Jun 07 2018
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 April 19 02:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)