The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A250073 Powers of 2 written in base 60, concatenating the decimal values of the sexagesimal digits. 6
1, 2, 4, 8, 16, 32, 104, 208, 416, 832, 1704, 3408, 10816, 21632, 43304, 90608, 181216, 362432, 1124904, 2253808, 4511616, 9423232, 19250504, 38501008, 117402016, 235204032, 510412104, 1021224208, 2042452416, 4125304832, 12251013704, 24542031408, 53124062816 (list; graph; refs; listen; history; text; internal format)
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".
LINKS
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
Cf. A000079.
Sequence in context: A195458 A264656 A078227 * A260873 A138814 A233424
KEYWORD
nonn,base
AUTHOR
Michael De Vlieger, Nov 11 2014
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 June 1 22:12 EDT 2024. Contains 373032 sequences. (Running on oeis4.)