OFFSET
0,2
COMMENTS
After 12 hours or 43200 seconds, the hands overlap at 12:00 and the cycle repeats.
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).
FORMULA
a(n) = round(n*43200/11).
EXAMPLE
For n=1, 3927 would correspond to slightly after 01:05.
PROG
(SageMath)
L=[]
n=0
while n<50:
L.append(round(numerical_approx((n+n/11))*3600))
n+=1
print(L)
CROSSREFS
KEYWORD
nonn
AUTHOR
Sean Lestrange, Aug 14 2020
STATUS
approved