A183032 Seconds (rounded down) at which the minute hand overlaps with hour hand on the analog clock.
0, 27, 54, 21, 49, 16, 43, 10, 38, 5, 32
Offset: 0
Examples
The eleven overlap times are: 00:00:00 plus 0/11 s, 01:05:27 plus 3/11 s; 02:10:54 plus 6/11 s, 03:16:21 plus 9/11 s, 04:21:49 plus 1/11 s, 05:27:16 plus 4/11 s, 06:32:43 plus 7/11 s, 07:38:10 plus 10/11 s, 08:43:38 plus 2/11 s, 09:49:05 plus 5/11 s, 10:54:32 plus 8/11 s. The next time would be 12:00:00.
References
- Sam Loyd, Mathematische Raetsel und Spiele, ausgewaehlt und herausgegeben von Martin Gardner, Dumont, Koeln, 1978, 3. Auflage 1997.
- Sam Loyd, Mathematical puzzles, selected and edited by Martin Gardner, Dover, 1959.
Programs
-
Mathematica
Table[ Floor@ Mod[300/11 n, 60], {n, 0, 10}]
Formula
a(n) = floor(300*n/11) (mod 60), n=0..10.
Comments