OFFSET
0,2
COMMENTS
Each sexagesimal digit appears as a pair of decimal digits as on a digital clock. Any leading zeros are truncated. Thus decimal 64 appears as "104" and not "0104".
EXAMPLE
a(7) = 208, since 2^7 = 128 = 2 sixties plus 8, thus 2:08 in clock-like notation, which becomes 208 when restricted to the numeric characters.
MATHEMATICA
a250073[n_Integer] :=
FromDigits@
StringJoin[
If[# < 10, StringJoin["0", ToString[#]], ToString[#]] & /@
IntegerDigits[2^n, 60]]; a250073 /@ Range[60] (* Michael De Vlieger, Nov 11 2014 *)
PROG
(PARI) a(n) = {d = digits(2^n, 60); s = ""; for (i=1, #d, if (d[i] < 10, s = concat(s, "0")); s = concat(s, Str(d[i]))); eval(s); } \\ Michel Marcus, Nov 12 2014
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michael De Vlieger, Nov 11 2014
STATUS
approved