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.
%I A004167 #24 Feb 19 2021 13:44:37 %S A004167 1,3,9,72,18,342,927,7812,1656,38691,94095,741771,144135,3234951, %T A004167 9692874,70984341,12764034,361041921,984024783,7641622611,1044876843, %U A004167 30235306401,90695018313,72887134149,184635924282,344906882748,9238285681452,7894847955267 %N A004167 Powers of 3 written backwards. %C A004167 From a(2) onwards, all terms are divisible by 9. - _Alonso del Arte_, Apr 04 2014 %H A004167 Alois P. Heinz, <a href="/A004167/b004167.txt">Table of n, a(n) for n = 0..1000</a> %F A004167 a(n) = A004086(A000244(n)). - _Michel Marcus_, Apr 05 2014 %e A004167 a(5) = 342 since 3^5 = 243. %p A004167 a:= n-> (s-> parse(cat(s[-i]$i=1..length(s))))(""||(3^n)): %p A004167 seq(a(n), n=0..50); # _Alois P. Heinz_, Apr 09 2015 %t A004167 Table[FromDigits[Reverse[IntegerDigits[3^n]]], {n, 0, 26}] (* _Alonso del Arte_, Apr 04 2014 *) %o A004167 (Python) %o A004167 def A004167(n): %o A004167 return int(str(3**n)[::-1]) # _Chai Wah Wu_, Feb 19 2021 %Y A004167 The following are parallel families: A000079 (2^n), A004094 (2^n reversed), A028909 (2^n sorted up), A028910 (2^n sorted down), A036447 (double and reverse), A057615 (double and sort up), A263451 (double and sort down); A000244 (3^n), A004167 (3^n reversed), A321540 (3^n sorted up), A321539 (3^n sorted down), A163632 (triple and reverse), A321542 (triple and sort up), A321541 (triple and sort down). %K A004167 nonn,base,easy %O A004167 0,2 %A A004167 _N. J. A. Sloane_ %E A004167 More terms from _Eric M. Schmidt_, Apr 04 2014