OFFSET
0,3
COMMENTS
From Wolfdieter Lang, Jan 16 2018: (Start)
The symbols used for 0..9 in this base 60 notation are 00, 01, ..., 09, but leading zeros are omitted.
For the Sumerian-Babylonian sexagesimal-decimal number system which uses two positions for each base-60 position filled with only one-digit numbers alternating between ranges of 0 to 9 and 0 to 5 see the link below.
(End)
For n < 1440, US and NATO military time designation of n minutes since midnight. - J. Lowell, Dec 29 2020
REFERENCES
Mohammad K. Azarian, Meftah al-hesab: A Summary, MJMS, Vol. 12, No. 2, Spring 2000, pp. 75-95. Mathematical Reviews, MR 1 764 526. Zentralblatt MATH, Zbl 1036.01002.
Mohammad K. Azarian, A Summary of Mathematical Works of Ghiyath ud-din Jamshid Kashani, Journal of Recreational Mathematics, Vol. 29(1), pp. 32-42, 1998.
Georges Ifrah, Histoire Universelle des Chiffres, Paris, 1981.
Georges Ifrah, From one to zero, A universal history of numbers, Viking Penguin Inc., 1985.
Georges Ifrah, Universalgeschichte der Zahlen, Campus Verlag, Frankfurt, New York, 2. Auflage, 1987, pp. 210-221.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..10000
Wolfdieter Lang, Sumerian-Babylonian sexagesimal-decimal number system.
FORMULA
a(60*n+r) = 100*a(n) + r, 0 <= r <= 59. - Jianing Song, Oct 22 2022
MATHEMATICA
Array[FromDigits@ Apply[Join, PadLeft[#, 2] & /@ IntegerDigits@ IntegerDigits[#, 60]] &, 71, 0] (* Michael De Vlieger, Jan 11 2018 *)
PROG
(PARI) A055643(n)=fromdigits(digits(n, 60), 100) \\ M. F. Hasler, Jan 09 2018
(Python)
def a(n): return n if n < 60 else 100*a(n//60) + n%60
print([a(n) for n in range(71)]) # Michael S. Branicky, Oct 22 2022
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Henry Bottomley, Jun 06 2000
EXTENSIONS
a(69) and a(70) from WG Zeist, Sep 08 2012
STATUS
approved