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!)
A255731 Rhonda numbers in sexagesimal number system. 14

%I #9 Sep 09 2017 15:49:18

%S 3348,3510,6750,17430,18750,18876,18944,19475,20564,21312,26550,28280,

%T 37230,38396,43940,48042,77770,88270,91224,97470,108882,111403,120046,

%U 123630,181996,182646,235467,253460,260429,264735,278675,289161,295960,296055,306642

%N Rhonda numbers in sexagesimal number system.

%C See A099542 for definition of Rhonda numbers and for more links.

%H Reinhard Zumkeller, <a href="/A255731/b255731.txt">Table of n, a(n) for n = 1..1000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/RhondaNumber.html">Rhonda Number</a>

%H Wikipedia, <a href="http://www.wikipedia.org/wiki/Sexagesimal">Sexagesimal</a>

%e a(1) = 3348 = 55 * 60^1 + 48 * 60^0 = 2*2*3*3*3*31,

%e with 55 * 48 = 60 * (2+2+3+3+3+31) = 2640;

%e a(10) = 21312 = 5*60^2 + 55*60^1 + 12*60^0 = 2*2*2*2*2*2*3*3*37,

%e with 5 * 55 * 12 = 60 * (2+2+2+2+2+2+3+3+37) = 3300.

%o (Haskell)

%o a255731 n = a255731_list !! (n-1)

%o a255731_list = filter (rhonda 60) $ iterate z 1 where

%o z x = 1 + if r < 59 then x else 60 * z x' where (x', r) = divMod x 60

%o -- Function rhonda as in A099542.

%Y Cf. Rhonda numbers to other bases: A100968 (base 4), A100969 (base 6), A100970 (base 8), A100973 (base 9), A099542 (base 10), A100971 (base 12), A100972 (base 14), A100974 (base 15), A100975 (base 16), A255735 (base 18), A255732 (base 20), A255736 (base 30).

%Y Cf. A001414, A027746.

%Y Column k=42 of A291925.

%K nonn,base

%O 1,1

%A _Reinhard Zumkeller_, Mar 05 2015

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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)