A242063 Analog clock times where the minute hand is on the hour hand (in hhmm format).
0, 105, 211, 316, 422, 527, 633, 738, 844, 949, 1055
Offset: 1
Examples
At 04:22 the minute hand covers the hour hand.
Links
- Maths is Fun, Analog Clock
- Maths is Fun, Set the time
- NAWCC, How do clocks work?
- Wikipedia, Clocks
- Wikipedia, Watches
Programs
-
JavaScript
for (h=0;h<12;h++) for (m=0;m<60;m++) if (Math.abs(h/12+m/720-m/60)<0.007) {if (m<10) m="0"+m;document.write(h.toString()+m+", ");}
Formula
a(n) = a(n-1) + a(n-2) - a(n-3) for n=4..11. - Colin Barker, Aug 19 2014
a(n) = (-423 - (-1)^n + 422*n)/4 for n=1..11. - Colin Barker, Aug 19 2014
Comments