cp's OEIS Frontend

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.

A102493 Numbers in base-60 representation that can be written with decimal digits.

This page as a plain text file.
%I A102493 #14 Feb 16 2025 08:32:55
%S A102493 0,1,2,3,4,5,6,7,8,9,60,61,62,63,64,65,66,67,68,69,120,121,122,123,
%T A102493 124,125,126,127,128,129,180,181,182,183,184,185,186,187,188,189,240,
%U A102493 241,242,243,244,245,246,247,248,249,300,301,302,303,304,305,306,307,308
%N A102493 Numbers in base-60 representation that can be written with decimal digits.
%D A102493 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.
%D A102493 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.
%H A102493 Reinhard Zumkeller, <a href="/A102493/b102493.txt">Table of n, a(n) for n = 1..10000</a>
%H A102493 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/Sexagesimal.html">Sexagesimal</a>
%H A102493 Wikipedia, <a href="http://en.wikipedia.org/wiki/Sexagesimal">Sexagesimal</a>
%t A102493 Table[Range[60n,60n+9],{n,0,6}]//Flatten (* _Harvey P. Dale_, Jul 06 2024 *)
%o A102493 (Haskell)
%o A102493 import Data.List (unfoldr)
%o A102493 a102493 n = a102493_list !! (n-1)
%o A102493 a102493_list = filter (all (<= 9) . unfoldr
%o A102493    (\x -> if x == 0 then Nothing else Just $ swap $ divMod x 60)) [0..]
%o A102493 -- _Reinhard Zumkeller_, Jun 27 2013
%Y A102493 Complement of A102494; A102487, A102489, A102491.
%K A102493 nonn,base
%O A102493 1,3
%A A102493 _Reinhard Zumkeller_, Jan 12 2005