login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

a(n+1) = a(n) converted to base 10 from base 6 (written in base 10).
1

%I #14 Apr 19 2014 07:48:09

%S 6,10,14,22,34,54,130,334,1314,10030,114234,2240510,120004422,

%T 15524040010,11044234015334,35253352344013542,1335041342253501254130,

%U 1145430035344432035011004550,35553113000013155333041144055024154

%N a(n+1) = a(n) converted to base 10 from base 6 (written in base 10).

%H Vincenzo Librandi, <a href="/A023387/b023387.txt">Table of n, a(n) for n = 1..32</a>

%t NestList[FromDigits[IntegerDigits[#,6]]&,6,20] (* _Harvey P. Dale_, Mar 25 2012 *)

%K nonn,base

%O 1,1

%A _David W. Wilson_