A335789 a(n) = time to the nearest second at the n-th instant (n>=0) when the hour and minute hands on a clock face coincide, starting at time 0:00.
0, 3927, 7855, 11782, 15709, 19636, 23564, 27491, 31418, 35345, 39273, 43200, 47127, 51055, 54982, 58909, 62836, 66764, 70691, 74618, 78545, 82473, 86400, 90327, 94255, 98182, 102109, 106036, 109964, 113891, 117818, 121745, 125673, 129600, 133527, 137455, 141382
Offset: 0
Keywords
Examples
For n=1, 3927 would correspond to slightly after 01:05.
Links
- Mathlete's Corner, How many times during the day do the hands of a clock overlap?
- Index entries for linear recurrences with constant coefficients, signature (1,0,0,0,0,0,0,0,0,0,1,-1).
Crossrefs
Cf. A120500 (as HHMMSS).
Programs
-
SageMath
L=[] n=0 while n<50: L.append(round(numerical_approx((n+n/11))*3600)) n+=1 print(L)
Formula
a(n) = round(n*43200/11).
Comments